very very helpful, I am trying to understand but one website makes this simple task more complex, thank you so much
@KindsonTheTechPro2 жыл бұрын
You are welcome!
@AhmedAbdallah-dt2kp Жыл бұрын
thank you for the explanation it helped a lot.
@arslanrasit2 жыл бұрын
Thank you dude, very helpful
@niniyaya7392 Жыл бұрын
very nice video sir! salute!
@maheshbabum5362 жыл бұрын
thank you sir 😊
@david35k Жыл бұрын
thank you
@stanislavmozolevskiy83462 жыл бұрын
I feel like this is more full solution in case of the second Kenguru starting behind the first one. public static string kangaroo(int x1, int v1, int x2, int v2) { int distanceDifference = x2 - x1; int speedDifference = v1 - v2; if(v1 > v2 && distanceDifference % speedDifference == 0) return "YES"; if(v2 > v1 && x1-x2 % v2-v1 == 0) return "YES"; return "NO"; }
@nelsonenriquez8105 Жыл бұрын
thanks, I came out with this: boolean x = (v1>v2&&(x2-x1)%(v2-v1)==0)? true : false;