Skip to content

Instantly share code, notes, and snippets.

@lettergram
Created March 18, 2015 23:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lettergram/a8e2b93bf5899d2eb864 to your computer and use it in GitHub Desktop.
Save lettergram/a8e2b93bf5899d2eb864 to your computer and use it in GitHub Desktop.
# 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