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.
#python solutiondefkangaroo(x1,v1,x2,v2):#tests if intersection is not possibleif(v1==v2andx1!=x2)orv2>v1:return"NO"k1=x1k2=x2#tests if intersection will happen at an integerwhilek1<k2:k1+=v1k2+=v2ifk1>k2: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 →