프로그래머스 - 최댓값과 최솟값
def solution(s): a = list(map(int, s.split(" "))) return str(min(a)) + " " + str(max(a))
이제 연습문제는 안 무섭다 !! 호호홍