https://programmers.co.kr/learn/courses/30/lessons/12939
나의 풀이
def solution(s):
num_list = list(map(int,s.split()))
max_num,min_num = max(num_list),min(num_list)
return str(min_num)+' '+str(max_num)
'Programming > Programmers' 카테고리의 다른 글
[프로그래머스] 행렬의 곱셈 (Python) (0) | 2021.11.07 |
---|---|
[프로그래머스] 피보나치 수(Python) (0) | 2021.11.07 |
[프로그래머스] 숫자의 표현 (Python) (0) | 2021.11.07 |
[프로그래머스] 다음 큰 숫자 (Python) (0) | 2021.11.07 |
[프로그래머스] n진수 게임 (Python) (0) | 2021.11.07 |
댓글