leetcode991
Posted AsenYang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode991相关的知识,希望对你有一定的参考价值。
1 class Solution: 2 def brokenCalc(self, X: ‘int‘, Y: ‘int‘) -> ‘int‘: 3 if X>=Y : 4 return Y-X 5 else: 6 num = 0 7 while Y > X: 8 Z = Y % 2 9 if Z == 1: 10 num += 1 11 Y += 1 12 else:#Z == 0 13 K = Y // 2 14 if K >= X: 15 Y = K 16 num += 1 17 else: 18 num += 1 19 num += X-K 20 return num 21 return num
以上是关于leetcode991的主要内容,如果未能解决你的问题,请参考以下文章
Leetcode-991 Broken Calculator(坏了的计算器)
leetcode_1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold_[二维前缀和](代码片段