Created
June 3, 2017 17:19
-
-
Save beaugaines/d083cc0a519404d8bb9c0fec2e311890 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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