You are viewing a single comment's thread. Return to all comments →
java
public static String angryProfessor(int k, List<Integer> a) { a.removeIf(n -> (n > 0)); return a.size() < k ? "YES" : "NO"; }
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 →
java