Skip to content

Instantly share code, notes, and snippets.

@CalebCurry
Created August 25, 2018 02:59
Show Gist options
  • Save CalebCurry/b7851253cf989ce2af8ea5241c2bbda3 to your computer and use it in GitHub Desktop.
Save CalebCurry/b7851253cf989ce2af8ea5241c2bbda3 to your computer and use it in GitHub Desktop.
heap = []
while (True):
data = input()
if(data == 'q'):
break
else:
heap.append(int(data))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment