728x90

베스트 풀이와 내 코드가 똑같았다.

 

def solution(s):
    s = list(map(int,s.split(" ")))
 
    return str(min(s))+" "+str(max(s))
728x90

+ Recent posts