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.
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;
}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Jumping on the Clouds
You are viewing a single comment's thread. Return to all comments →
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;
}