본문 바로가기
코딩테스트/Python

프로그래머스 스쿨 - 최댓값과 최솟값(Python)(복습)

by 보안매크로 2023. 10. 22.
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