• + 0 comments

    `

    def angryProfessor(k, a):
    
            return "NO" if len([i for i in a if i <=0]) >= k else "YES"
    
    `