Last active
December 22, 2015 11:59
-
-
Save rapind/6469741 to your computer and use it in GitHub Desktop.
Recursion is so 2012.
This file contains 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
# The only true solution to the "Turn this array into a snake" test. | |
class Array | |
def motherfucking_spiral | |
[ 1, 2, 3, 4, | |
12, 13, 14, 5, | |
11, 16, 15, 6, | |
10, 9, 8, 7 ] | |
end | |
end | |
p [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16].motherfucking_spiral |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment