Skip to content

Commit f8fe611

Browse files
authored
Update 0347-top-k-frequent-elements.dart
1 parent e41b019 commit f8fe611

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

dart/0347-top-k-frequent-elements.dart

+1-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ class Solution {
2626
}
2727
}
2828

29-
30-
class Soluton {
29+
class Solution {
3130
List<int> topKFrequent(List<int> nums, int k) {
3231
Map<int, int> map = {};
3332
for (int n in nums) {

0 commit comments

Comments
 (0)