๋ฌธ์
https://programmers.co.kr/learn/courses/30/lessons/12939?language=python3
๋ด ๋ฌธ์ ํ์ด
def solution(s):
num_s = list(map(int, s.split()))
return str(min(num_s)) + " " + str(max(num_s))
๐ ๊ตฌํ ๋ฌธ์ ๋ก, ๊ณต๋ฐฑ์ ๊ธฐ์ค์ผ๋ก intํ ๋ฆฌ์คํธ๋ก ๋ณํํ์ฌ max์ min์ ๊ตฌํด์ฃผ์๋ค.
๐ก ํผ๋๋ฐฑ
- ๋ฌธ์์ด๊ณผ ์ซ์ ์ฌ์ด์ ํ๋ณํ์ ์์ ๋กญ๊ฒ ํ ์ ์์ผ๋ฉด ์ฝ๊ฒ ํ ์ ์๋ ๋ฌธ์ ์๋ค.
'4๏ธโฃ Python > Problem Solving' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[Python Algorithm] JadenCase ๋ฌธ์์ด ๋ง๋ค๊ธฐ Programmers(Lv.2) (0) | 2022.02.04 |
---|---|
[Python Algorithm] ํ๋ ฌ์ ๊ณฑ์ Programmers(Lv.2) (0) | 2022.02.04 |
[Python Algorithm] ์ต์๊ฐ ๋ง๋ค๊ธฐ Programmers(Lv.2) (0) | 2022.02.04 |
[Python Algorithm] ์นดํซ Programmers(Lv.2) (0) | 2022.02.03 |
[Python Algorithm] IOIOI BOJ #5525 (0) | 2022.02.03 |
๋๊ธ