You are viewing a single comment's thread. Return to all comments →
Thought about as just intersecting lines.
def kangaroo(x1, v1, x2, v2): if v2 >= v1: return "NO" xint = (x2 - x1) / (v1 - v2) if xint % 1 != 0: return "NO" return "YES"
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 →
Thought about as just intersecting lines.