We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0ba6de commit 906a421Copy full SHA for 906a421
Exercise-54-Priority_queue_simple.py
@@ -10,7 +10,7 @@ def __init__(self):
10
def __str__(self):
11
return ' '.join([str(i) for i in self.queue])
12
13
- # for checking if the queue is empty
+ ## for checking if the queue is empty
14
def isEmpty(self):
15
return len(self.queue) == 0
16
0 commit comments