[go: nahoru, domu]

Skip to content

Commit

Permalink
Added tests for ArrayQueue
Browse files Browse the repository at this point in the history
  • Loading branch information
awwalm committed May 28, 2023
1 parent 4dda244 commit 36f2d11
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Goodrich/Chapter6/test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from array_queue import ArrayQueue

aq = ArrayQueue()
aq.enqueue(5)
aq.enqueue(3)
print(len(aq))
aq.dequeue()
print(aq)

0 comments on commit 36f2d11

Please sign in to comment.