728x90
s = "1 2 3 4"
# a = []
# my_list = s.split(' ')
# for i in range(len(my_list)):
# a = list(map(int, s.split(' ')))
# print(a)
# print(str(min(a)) + " " + str(max(a)))
def solution(s):
a = []
a = list(map(int, s.split(' ')))
return str(min(a)) + " " + str(max(a))
728x90
'코딩테스트 > Python' 카테고리의 다른 글
프로그래머스 스쿨 - A강조하기.(Python) (1) | 2023.10.29 |
---|---|
프로그래머스 스쿨 - 5명씩(Python) (0) | 2023.10.28 |
프로그래머스 스쿨 - 올바른 괄호(Python)(복습) (0) | 2023.10.21 |
프로그래머스 스쿨 - 0떼기(Python) (0) | 2023.10.15 |
프로그래머스 스쿨 - 정수 삼각형(Python)(복습) (0) | 2023.10.14 |