Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add solutions to lc problem: No.3032 #2331

Merged
merged 13 commits into from
Feb 10, 2024
Merged
Prev Previous commit
Next Next commit
feat: add solutions to lc problem: No.3032
  • Loading branch information
Nothing-avil authored Feb 9, 2024
commit 00e5ee02a2d764f168a41b4ddb6f2c2ea71e7e8e
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Solution {
int numberCount(int a, int b) {
int res = 0;
for (int i = a; i <= b; ++i) {
if (isvalid(I)) {
if (isvalid(i)) {
++res;
}
}
Expand Down
Loading