Skip to content

Commit 44521e7

Browse files
authored
Add missing closing brace in Solution.cpp
1 parent a0df23c commit 44521e7

File tree

1 file changed

+2
-1
lines changed
  • solution/3300-3399/3377.Digit Operations to Make Two Integers Equal

1 file changed

+2
-1
lines changed

solution/3300-3399/3377.Digit Operations to Make Two Integers Equal/Solution.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,11 @@ class Solution {
4545
}
4646
return -1;
4747
}
48+
4849
public:
4950
int minOperations(int n, int m) {
5051
runSieve();
5152
if (sieve[n] || sieve[m]) return -1;
5253
return solve(n, m);
53-
}
54+
}
5455
};

0 commit comments

Comments
 (0)