def solution(s):
array_s = list(map(int, s.split()))
max_value = max(array_s)
min_value = min(array_s)
result = str(min_value)+" "+str(max_value)
return result
s="-4 -2 -1 -3"
print(solution(s))
'코딩 테스트 > 문제 풀기' 카테고리의 다른 글
[프로그래머스] 방문길이 (0) | 2021.03.15 |
---|---|
[프로그래머스] 이진 변환 반복하기 (0) | 2021.03.15 |
[프로그래머스] 숫자의 표현 (0) | 2021.03.15 |
[프로그래머스] 게임 맵 최단거리 (0) | 2021.03.15 |
[프로그래머스] 땅따먹기 (0) | 2021.03.11 |
댓글