일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- OS
- 재귀
- 파이썬
- Regression
- 데이터베이스
- db
- googleapiclient
- 국민대
- kmu
- LSTM
- C++
- Stack
- 국민대학교
- machine learning
- 정렬
- Heap
- 스택
- 프로그래머스
- python3
- instaloader
- SQL
- GIT
- 머신 러닝
- Python
- Seq2Seq
- PANDAS
- 회귀
- programmers
- 운영체제
- gan
Archives
- Today
- Total
정리 노트
프로그래머스 로또의 최고 순위와 최저 순위(Python) 본문
728x90
https://programmers.co.kr/learn/courses/30/lessons/77484
레벨 1 문제라서 그런지 쉽게 풀렸다. 딱히 설명을 더 할 것도 없다. 풀이 코드는 아래와 같다.
def solution(lottos, win_nums):
zero_cnt, min_cnt = lottos.count(0), 0
answer = []
rank = [6, 6, 5, 4, 3, 2, 1]
for i in range(len(lottos)):
if lottos[i] in win_nums:
min_cnt += 1
max_cnt = min(min_cnt + zero_cnt, 6)
answer = rank[max_cnt], rank[min_cnt]
return answer
728x90
'프로그래머스 코딩테스트 연습' 카테고리의 다른 글
프로그래머스 신규 아이디 추천(Python) (0) | 2022.06.22 |
---|---|
프로그래머스 신고 결과 받기(Python) (0) | 2022.06.22 |
프로그래머스 H-Index(Python) (0) | 2022.06.21 |
프로그래머스 전화번호 목록(Python) (0) | 2022.06.21 |
프로그래머스 디스크 컨트롤러(Python3) (0) | 2022.06.21 |