문제

https://school.programmers.co.kr/learn/courses/30/lessons/12939

풀이

시도 1

string 형태로 연산자 비교시 음수일 경우에 예외가 발생하게 됩니다. 따라서 배열을 돌면서 Int형으로 변경해준 이후 연산했습니다.

solution.py
1
2
3
4
5
6
def solution(s):
    arr = []
    for char in s.split(" "):
        arr.append(int(char))
    answer = str(min(arr)) + " " + str(max(arr))
    return answer


다른사람 풀이

solution.py
1
2
3
4
5
6
def solution(s):
    s = list(map(int,s.split()))
    return str(min(s)) + " " + str(max(s))

def solution(s):
    return str(min([int(i) for i in s.split(' ')])) + ' ' + str(max([int(i) for i in s.split(' ')]))