Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4100091 commit f77a970Copy full SHA for f77a970
1 file changed
Data-Structures/Heap/test/BinaryHeap.test.js
@@ -36,7 +36,6 @@ describe('BinaryHeap', () => {
36
it('should handle insertion of duplicate values', () => {
37
// Check if the heap handles duplicate values correctly
38
minHeap.insert(2)
39
- console.log(minHeap.heap)
40
expect(minHeap.heap).toEqual([1, 3, 2, 4, 8, 6, 2])
41
})
42
0 commit comments