You are viewing a single comment's thread. Return to all comments →
int count=0; for(int i=0;i<a.size();i++){ if(a.get(i)<=0){ count++; }else{ continue; } } if(count>=k){ return "NO"; } return "YES";
Seems like cookies are disabled on this browser, please enable them to open this website
Angry Professor
You are viewing a single comment's thread. Return to all comments →