You are viewing a single comment's thread. Return to all comments →
java
public static String kangaroo(int x1, int v1, int x2, int v2) { double time = (double)(x1- x2) / (double)(v2 - v1); return time >= 0 && time % 1 == 0 ? "YES" : "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 →
java