[Python] 프로그래머스 - Level2 - 최댓값과 최솟값

강주형·2022년 8월 26일
0

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

연습문제

def solution(s):
    return str(min(map(int, s.split())))+' '+str(max(map(int, s.split())))

레벨2 너무 어렵다. 연습문제 먼저 풀자

profile
Statistics & Data Science

0개의 댓글