RUBY

[프로그래머스] 최댓값과 최솟값 본문

PS/Programmers

[프로그래머스] 최댓값과 최솟값

RUBY_루비 2020. 10. 27. 23:59

출처:: programmers.co.kr/learn/courses/30/lessons/12939?language=python3

분류:: 

 

1. 문제 이해 및 해결과정

 

2. 풀이방법

 1. [ python ]

def solution(s):
    n=[]
    n=list(map(int,s.split(" ")))
   
    return str(min(n))+" "+str(max(n))

 

3. 오답원인

 

4. 알게된 점

 

'PS > Programmers' 카테고리의 다른 글

[프로그래머스] 튜플  (0) 2020.10.27
[프로그래머스] 피보나치 수  (0) 2020.10.27
[프로그래머스] 땅따먹기  (0) 2020.10.27
[프로그래머스] 최솟값 만들기  (0) 2020.10.27
[프로그래머스] 다음 큰 숫자  (0) 2020.10.26
Comments