Skip to content

Commit 267674e

Browse files
committed
"top K Frequent Elements 문제"
1 parent 814fa1e commit 267674e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

top-k-frequent-elements/ymir0916.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,5 @@ public int[] topKFrequent(int[] nums, int k) {
2323
.map(Map.Entry::getKey)
2424
.mapToInt(Integer::intValue)
2525
.toArray();
26-
}
26+
}
27+
}

0 commit comments

Comments
 (0)