Skip to content

Commit b5b10ee

Browse files
committed
Fix: Typo
1 parent 59d1495 commit b5b10ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

top-k-frequent-elements/flynn.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Solution {
2121
vector<int> topKFrequent(vector<int>& nums, int k) {
2222
vector<int> res;
2323
priority_queue<pair<int, int>> pq;
24-
unorderd_map<int, int> m;
24+
unordered_map<int, int> m;
2525

2626
auto nums_it = nums.begin();
2727
while (nums_it != nums.end()) {

0 commit comments

Comments
 (0)