You are viewing a single comment's thread. Return to all comments →
C# solution:
string result = "NO"; if (v1 <= v2) { return result; } if ((x2 - x1) % (v1 - v2) == 0) { result = "YES"; } return result;
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 →
C# solution: