summaryrefslogtreecommitdiff
path: root/progs/a16.py
blob: c458cce56f4f7cc24e88a4bc7d8ec9bde08f3135 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
def min_Jumps(a, b, d): 
    temp = a 
    a = min(a, b) 
    b = max(temp, b) 
    if (d >= b): 
        return (d + b - 1) / b 
    if (d == 0): 
        return 0
    if (d == a): 
        return 1
    else:
        return 2