Skip to content

Commit

Permalink
Update confusing-number-ii.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
kamyu104 authored Jun 19, 2021
1 parent fdfccd9 commit dafe0c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion C++/confusing-number-ii.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class Solution2 {
}

private:
int f(int n) {
int f(int n) { // count confusing numbers in the range of [0, n]
return totalCount(n) - validCountInLessLength(n) - validCountInFullLength(n);
}

Expand Down

0 comments on commit dafe0c1

Please sign in to comment.