You are viewing a single comment's thread. Return to all comments →
def kangaroo(x1, v1, x2, v2): denominator = v1 - v2 if denominator == 0: return 'NO' j = (x2 - x1) / denominator if j.is_integer() and j > 0: return 'YES' else: return 'NO'
Seems like cookies are disabled on this browser, please enable them to open this website
Number Line Jumps
You are viewing a single comment's thread. Return to all comments →