(self)
| 11 | class PriorityQueue: |
| 12 | # Based on Min Heap |
| 13 | def __init__(self): |
| 14 | self.cur_size = 0 |
| 15 | self.array = [] |
| 16 | self.pos = {} # To store the pos of node in array |
| 17 | |
| 18 | def isEmpty(self): |
| 19 | return self.cur_size == 0 |
nothing calls this directly
no outgoing calls
no test coverage detected