mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-07 11:37:36 +08:00
Remove extra Semicolon (#7152)
This commit is contained in:
@ -22,7 +22,7 @@ class LinkedQueue:
|
|||||||
>>> queue.put(5)
|
>>> queue.put(5)
|
||||||
>>> queue.put(9)
|
>>> queue.put(9)
|
||||||
>>> queue.put('python')
|
>>> queue.put('python')
|
||||||
>>> queue.is_empty();
|
>>> queue.is_empty()
|
||||||
False
|
False
|
||||||
>>> queue.get()
|
>>> queue.get()
|
||||||
5
|
5
|
||||||
|
Reference in New Issue
Block a user