There is a broken calculator that has the integer startValue on its display initially. In one operation, you can:
2, or1 from the number on display.Given two integers startValue and target, return the minimum number of operations needed to display target on the calculator.
1 <= startValue, target <= 10^9startValue = 2, target = 32startValue = 5, target = 82startValue = 3, target = 103