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<Integer> c) {
// Write your code here
int count=0;
int i=0;
while(i+2<c.size()){
if(c.get(i+2)==0)
i+=2;
else if(c.get(i+1)==0){
i++;
}
count++;
}
if(i+1<c.size() && c.get(i+1)==0){
count++;
}
return count;
}
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 →
}