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
it'changes certain keys'donumbers=[1,2,3,4,5,6,7,8,9,10,100,101]heap=PfCustomCrawlerNeo::Containers::MinHeap.new(numbers)heap.change_key(2,102,true)heap.popheap.popheap.change_key(8,50,true)ordered=[]ordered << heap.min!untilheap.empty?expect(ordered).toeql([4,5,6,7,9,10,8,100,101,2])end
test
fails
The text was updated successfully, but these errors were encountered: