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
- 자연어처리
- 프로그래머스 파이썬
- ubuntu
- dacon
- 편스토랑 우승상품
- Docker
- programmers
- AI 경진대회
- github
- 맥북
- ChatGPT
- Git
- SW Expert Academy
- Real or Not? NLP with Disaster Tweets
- Baekjoon
- 편스토랑
- gs25
- 코로나19
- 백준
- 파이썬
- 프로그래머스
- 우분투
- 캐치카페
- 데이콘
- 더현대서울 맛집
- PYTHON
- 금융문자분석경진대회
- hackerrank
- leetcode
- Kaggle
Archives
- Today
- Total
솜씨좋은장씨
[Programmers] 가장 큰 수 찾기 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 가장 큰 수 찾기 입니다.
👨🏻💻 코드 ( Solution )
def solution(array):
answer = []
max_num = max(array)
answer.append(max_num)
idx = array.index(max_num)
answer.append(idx)
return answer
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 6810번 : ISBN (Python) (0) | 2022.10.27 |
---|---|
[Programmers] 숫자 짝궁 (Python) (0) | 2022.10.26 |
[Programmers] 콜라 문제 (Python) (0) | 2022.10.24 |
[BaekJoon] 23348번 : 스트릿 코딩 파이터 (Python) (0) | 2022.10.23 |
[BaekJoon] 25178번 : 두라무리 휴지 (Python) (0) | 2022.10.22 |
Comments