You are viewing a single comment's thread. Return to all comments →
O(1) Solution
def kangaroo(x1, v1, x2, v2): # Write your code here if v1 > v2: jump_diff = v1 - v2 position_diff = x2 - x1 if position_diff % jump_diff == 0: return "YES" return "NO" 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 →
O(1) Solution