We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Number Line Jumps
Number Line Jumps
Sort by
recency
|
3982 Discussions
|
Please Login in order to post a comment
C++: Try to write it in mathematical expression form string kangaroo(int x1, int v1, int x2, int v2) { if(v1==v2){ return (x1==x2)? "YES":"NO"; } if((x2-x1)%(v1-v2)==0 && (x2-x1)/(v1-v2)>=0){ return "YES"; } return "NO";
}
` def kangaroo(x1, v1, x2, v2):
This can be solved without itteration. Use deltaV (v2-v1) and deltaX (x1-x2) to catch the edge cases: