• + 0 comments

    ` def kangaroo(x1, v1, x2, v2):

    if v1 == v2:
        return 'YES' if x2 == x1 else 'NO'
    
    ans = (x2 - x1) / (v1 - v2)
    
    return 'YES' if ans >= 0 and ans.is_integer() else 'NO'