📜  minimum-number-of-steps-to-reduce-number-to-1 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:47.746000             🧑  作者: Mango

代码示例1
#minimum-number-of-steps-to-reduce-number-to-1
def stepCount(n):
    count = 0
    while n > 1:
        if n % 2 == 0:             # bitmask: *0
            n = n // 2
        elif n == 3 or n % 4 == 1: # bitmask: 01
            n = n - 1
        else:                      # bitmask: 11
            n = n + 1
        count += 1
    return count