Skip to content

Instantly share code, notes, and snippets.

@lettergram
Created March 18, 2015 23:27
Embed
What would you like to do?
# Slide spatula under pancake at index and flip to top
def flip(stack, index):
newStack = stack[:(index + 1)]
newStack.reverse()
newStack += stack[(index + 1):]
return newStack
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment