def solution(s):
answer = []
s_sp = s.split()
s_list = list(map(int, s_sp))
s_answer = sorted(s_list)
answer.append(str(s_answer[0]))
answer.append(str(s_answer[-1]))
return " ".join(answer)
'Coding Test > Programmers_Python' 카테고리의 다른 글
[프로그래머스/python] 키패드 누르기 (2020 카카오 인턴십) (0) | 2020.08.05 |
---|---|
[프로그래머스/python] 행렬의 곱셈 (0) | 2020.08.04 |
[프로그래머스/python] 크레인 인형뽑기 게임 (2019 카카오 개발자 겨울 인턴십) (0) | 2020.08.03 |
[프로그래머스/python] 콜라츠 추측 (0) | 2020.07.29 |
[프로그래머스/python] 제일 작은 수 제거하기 (0) | 2020.07.29 |