You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
! should be removed . The test case is that min heap [1,2,3,4,5,6,7,8,9] remove 2 and should be expected '1,4,3,8,5,6,7,9' but get '1,9,3,4,5,6,7,8' with the wrong code.
The text was updated successfully, but these errors were encountered:
watchsky
changed the title
heap remove function was wrong
heap remove function has bug
Aug 25, 2018
Uh oh!
There was an error while loading. Please reload this page.
javascript-algorithms/src/data-structures/heap/Heap.js
Line 178 in 872a38f
!
should be removed . The test case is that min heap [1,2,3,4,5,6,7,8,9] remove 2 and should be expected '1,4,3,8,5,6,7,9' but get '1,9,3,4,5,6,7,8' with the wrong code.The text was updated successfully, but these errors were encountered: