Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created March 1, 2021 06:20
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 amankharwal/a0b92710c6edcdfd19188ce66449ccf3 to your computer and use it in GitHub Desktop.
Save amankharwal/a0b92710c6edcdfd19188ce66449ccf3 to your computer and use it in GitHub Desktop.
stack = Stack()
print(stack.is_empty())
for i in range(0, 10):
stack.push(i)
print(stack.size())
print(stack.items)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment