Skip to content

Commit 146b2fd

Browse files
committed
merge k-way sorted array
1 parent 8ca0d50 commit 146b2fd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PuzzleCoding/src/MergeSortedArray.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public ArrayNode removeMin() {
4646
if (isEmpty())
4747
throw new RuntimeException("heap is empty");
4848

49-
System.out.println(heap.toString());
49+
// System.out.println(heap.toString());
5050
ArrayNode min = heap.get(1);
5151
heap.remove(min);
5252

0 commit comments

Comments
 (0)