카타 7급 Small enough? - Beginner

1 Kotlin[ | ]

2 R[ | ]

small_enough <- function(vector, limit) {
  max(vector) <= limit
}
small_enough <- function(vector, limit) {
  all(vector<=limit)
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}