Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 프로그래머스 파이썬
- 더현대서울 맛집
- dacon
- programmers
- 백준
- hackerrank
- Docker
- 자연어처리
- 파이썬
- Real or Not? NLP with Disaster Tweets
- 캐치카페
- SW Expert Academy
- github
- ubuntu
- 맥북
- 편스토랑
- Kaggle
- gs25
- Git
- 코로나19
- ChatGPT
- Baekjoon
- leetcode
- AI 경진대회
- 편스토랑 우승상품
- 프로그래머스
- 우분투
- 데이콘
- 금융문자분석경진대회
- PYTHON
Archives
- Today
- Total
솜씨좋은장씨
[Programmers] 최댓값과 최솟값 (Python) 본문
728x90
반응형
1일 1문제 86일차!
오늘의 문제는 프로그래머스의 최댓값과 최솟값 입니다.
Solution
def solution(s):
answer = ''
num_list = list(map(int, s.split(' ')))
min_num = min(num_list)
max_num = max(num_list)
answer = str(min_num) + " " + str(max_num)
return answer
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 1629번 : 곱셈 (Python) (0) | 2020.05.04 |
---|---|
[BaekJoon] 6603번 : 로또 (Python) (0) | 2020.05.03 |
[BaekJoon] 2089번 : -2진수 (Python) (0) | 2020.05.01 |
[Programmers] 124 나라의 숫자 (Python) (0) | 2020.04.30 |
[HackerRank] Day of Programmer (Python) (0) | 2020.04.29 |
Comments