You are viewing a single comment's thread. Return to all comments →
`
def angryProfessor(k, a): return "NO" if len([i for i in a if i <=0]) >= k else "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 →
`