Skip to content

Instantly share code, notes, and snippets.

@rapind
Last active December 22, 2015 11:59
Show Gist options
  • Save rapind/6469741 to your computer and use it in GitHub Desktop.
Save rapind/6469741 to your computer and use it in GitHub Desktop.
Recursion is so 2012.
# 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