📜  快速猜测两个数字之间的整除数 - Python 代码示例

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

代码示例1
import math

def solution(A, B, K):
    
    b = math.floor(B/K)
    a = math.floor((A-1)/K)   

    return b - a