(self)
| 88 | ) |
| 89 | |
| 90 | def test_reconstruct_queue(self): |
| 91 | self.assertEqual( |
| 92 | [[5, 0], [7, 0], [5, 2], [6, 1], [4, 4], [7, 1]], |
| 93 | reconstruct_queue([[7, 0], [4, 4], [7, 1], [5, 0], [6, 1], [5, 2]]), |
| 94 | ) |
| 95 | |
| 96 | |
| 97 | class TestPriorityQueue(unittest.TestCase): |
nothing calls this directly
no test coverage detected