예제 #1
0
 def test_push(self):
     heap = RemovalHeap()
     for c in reversed(ascii_uppercase):
         heap.push(c)
         heap.check()
     self.assertSetEqual(set(ascii_uppercase), set(heap))