[프로그래머스] 최댓값과 최솟값 Lv.2 - [파이썬/python]
https://school.programmers.co.kr/learn/courses/30/lessons/12939
def solution(s):
# [1, 2, 3, 4] 숫자형
s = list(map(int,s.split(" ")))
result = f'{min(s)} {max(s)}'
return result
728x90
'코딩테스트' 카테고리의 다른 글
[프로그래머스] 가운데 글자 가져오기 - Lv.1 (0) | 2023.08.13 |
---|---|
[프로그래머스] JadenCase 문자열 만들기 - Lv.2 (18) | 2023.08.13 |
[프로그래머스] 평행 - Lv.0 (32) | 2023.08.13 |
[프로그래머스] 정수를 나선형으로 배치하기 - Lv.0 (24) | 2023.08.13 |
[프로그래머스] 개인정보 수집 유효기간 - Lv.1 (3) | 2023.08.11 |