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.
Jumping on the Clouds
Jumping on the Clouds
Sort by
recency
|
3248 Discussions
|
Please Login in order to post a comment
Here is my c++ solution, you can watch the explanation here : https://youtu.be/GNof9B-9CN0
Solution for c#
public static int jumpingOnClouds(List c) { //narayan gupta int jumps = 0; int i = 0; while (i < c.size() - 1) { if (i + 2 < c.size() && c.get(i + 2) == 0) { i += 2; // Jump 2 clouds if possible } else { i += 1; // Otherwise, jump 1 cloud } jumps++; // Count each jump } return jumps;
}
Solution of Jumping on the Clouds