s
를 " " 기준으로 split() 한 후에 리스트 아이템을 int 형으로 변환한다.
int list 중에서 최솟값과 최댓값을 string으로 반환한다.
def solution(s):
value = list(map(int, s.split()))
return " ".join([str(min(value)), str(max(value))])
fun solution(s: String): String =
s.split(" ").map { c ->
c.toInt()
}.run {
return "${minOf { it }} ${maxOf { it }}"
}
list(map(int, str_list))
"${value1} ${value2}"
== str(value1) + " " + str(value2)
# asis
" ".join([str(min(value)), str(max(value))])
# tobe
str(min(value)) + " " + str(max(value))
``