250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Django
- 단어 공부
- 프로그래머스
- ORDER BY
- YOLOv5
- 파이썬 몫
- 백준
- sql
- Join
- 설계
- 프로젝트
- count
- 데이터
- where
- date_format
- GIT
- 슬라이싱
- pcce 기출문제
- SQL 고득점 Kit
- 파이썬 슬라이싱
- 코딩테스트 연습
- Python3
- python
- html
- List Comprehension
- Len
- css
- 파이썬
- 아이엠어바텐더
- map
Archives
- Today
- Total
nan + nan = 2nan
[백준] [Python3] #10818. 최소, 최대 본문
728x90
코드 입력
n = int( input() )
number = list( map( int, input().split() ) )
print( min(number), max(number) )
굉장히 간단한 코드지만, 처음엔 좀 헷갈렸다.
n과 number를 출력하고 min과 max를 쓰는 것까지는 어느정도 뽑아냈는데,
아직 확실히 list, int, str 에 대한 감이 부족한 것 같다.
처음엔 number에 list를 달지도 않았고, for 문을 사용해서 해야하나도 고민했다.
근데 그냥 간단했다.
number 에 list 없이 jupyter로 출력을 해보니 16진수로 출력이 되었다.
그래서 list를 하는건가? map과 int로 정수형으로 만들어 list로 출력한다라고 생각해야겠다.
출처 : 백준 Online Judge
https://www.acmicpc.net/problem/10818
'Python > 백준 알고리즘' 카테고리의 다른 글
[백준] [Python3] #2577. 숫자의 개수 (0) | 2021.08.12 |
---|---|
[백준] [Python3] #2562. 최댓값 (0) | 2021.08.11 |
[백준] [Python3] #1110. 더하기 사이클 (0) | 2021.08.04 |
[백준] [Python3] #10951. A + B - 4 (0) | 2021.08.03 |
[백준] [Python3] #10952. A + B - 5 (0) | 2021.08.03 |
Comments