Notice
Recent Posts
Recent Comments
Link
S E P H ' S
[Python] 최댓값과 최솟값 본문
풀이
def solution(s):
arr = list(map(int, s.split()))
arr.sort()
return str(arr[0]) + " " + str(arr[-1])
'Algorithm > Programmers' 카테고리의 다른 글
[Python] 땅따먹기 (0) | 2021.07.31 |
---|---|
[Python] 숫자의 표현 (0) | 2021.07.31 |
[Python] 최솟값 만들기 (0) | 2021.07.31 |
[Python] 행렬의 곱셈 (0) | 2021.07.20 |
[Python] 키패드 누르기 (0) | 2021.07.18 |