Skip to content

Instantly share code, notes, and snippets.

@beaugaines
Created June 3, 2017 17:19
Show Gist options
  • Save beaugaines/d083cc0a519404d8bb9c0fec2e311890 to your computer and use it in GitHub Desktop.
Save beaugaines/d083cc0a519404d8bb9c0fec2e311890 to your computer and use it in GitHub Desktop.
def tiaosheng(failed_counter)
jumps = []
[*1..60].map do |s|
if failed_counter.include?(s)
jumps << s << s << s << s
else
jumps << s
end
end
jumps[59]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment