g0901_1000.s0991_broken_calculator.Solution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-java11 Show documentation
Show all versions of leetcode-in-java11 Show documentation
Java Solution for LeetCode algorithm problems, continually updating
The newest version!
package g0901_1000.s0991_broken_calculator;
// #Medium #Math #Greedy #2022_03_31_Time_0_ms_(100.00%)_Space_41.1_MB_(40.35%)
public class Solution {
public int brokenCalc(int startValue, int target) {
int result = 0;
while (startValue != target) {
if (target > startValue && target % 2 != 0) {
target += 1;
result++;
} else if (target > startValue) {
target /= 2;
result++;
} else {
result += startValue - target;
break;
}
}
return result;
}
}