문제 링크 (Level 2)
https://school.programmers.co.kr/learn/courses/30/lessons/12939
나의 코드 (Python)
def solution(s):
answer = ''
li = list(map(int, s.split()))
a = min(li)
b = max(li)
answer = str(a) + " " + str(b)
return answer
1. 문자열을 list로 담는다.
2. 최소, 최대를 구한다.
3. 조립한다.
'코딩공부 > 프로그래머스 (python)' 카테고리의 다른 글
[프로그래머스] 최솟값 만들기 (Python) (0) | 2022.09.16 |
---|---|
[프로그래머스] 이진 변환 반복하기 (Python) (0) | 2022.09.13 |
[프로그래머스] [1차] 다트 게임 (Python) (0) | 2022.08.14 |
[프로그래머스] 콜라츠 추측 (Python) (0) | 2022.08.14 |
[프로그래머스] x만큼 간격이 있는 n개의 숫자 (Python) (0) | 2022.08.11 |
댓글