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.
functionkangaroo(x1,v1,x2,v2){// Write your code here// Solve for t: x1 + d1 * t = x2 + d2 * tlett=(x2-x1)/(v1-v2);// If t is negative, they never meet in forward timeif(t<0||!Number.isInteger(t)){return"NO";}return"YES";}
Cookie support is required to access HackerRank
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 →
Simple Mathematical Solution in JavaScript