You are viewing a single comment's thread. Return to all comments →
TypeScript
function angryProfessor(k: number, a: number[]): string { return a.filter((arriveTime) => (arriveTime <= 0)).length >= k ? "NO" : "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 →
TypeScript