[프로그래머스] 최댓값과 최솟값 풀이



1. 문제

https://programmers.co.kr/learn/courses/30/lessons/12939

2. 풀이

  • map 함수를 이용하여 모두 int로 변경한 후에, 최소 최대값을 찾아서 답을 return 합니다.
def solution(s):
    num_list = list(map(int, s.split()))
    return "%d %d" % (min(num_list) , max(num_list))