We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83df283 commit 0958822Copy full SHA for 0958822
C++/minimum-cost-to-set-cooking-time.cpp
@@ -16,7 +16,7 @@ class Solution {
16
}
17
return result;
18
};
19
- int m = targetSeconds / 60, s =targetSeconds % 60;
+ int m = targetSeconds / 60, s = targetSeconds % 60;
20
return min(cost(m, s), cost(m - 1, s + 60));
21
22
0 commit comments