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 428ea42 commit 1f71774Copy full SHA for 1f71774
Swift/347. Top K Frequent Elements.swift
@@ -0,0 +1,10 @@
1
+// 347. Top K Frequent Elements
2
+// 48 ms, 68%
3
+func topKFrequent(_ nums: [Int], _ k: Int) -> [Int] {
4
+ var dict = [Int:Int]()
5
+ nums.forEach {
6
+ dict[$0] = (dict[$0] == nil ? 0 : dict[$0]! ) + 1
7
+ }
8
+
9
+ return dict.sorted(by: { $0.value > $1.value } )[0..<k].map({$0.key})
10
+}
0 commit comments