Skip to content

Commit 62550dd

Browse files
committed
Update majority-element-ii.cpp
1 parent 0939931 commit 62550dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

C++/majority-element-ii.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ class Solution {
3939
}
4040
}
4141

42-
// Selects the integer which occurs > n / k times.
42+
// Selects the integer which occurs > [n / k] times.
4343
vector<int> ret;
4444
for (const pair<int, int>& it : hash) {
45-
if (it.second > static_cast<double>(n) / k) {
45+
if (it.second > n / k) {
4646
ret.emplace_back(it.first);
4747
}
4848
}

0 commit comments

Comments
 (0)