일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- androidstudio
- BFS
- level3
- 어렵다
- 대학원
- 다시풀기
- SWEA
- 컴퓨터비전
- 내휴학생활중의아주큰일
- Matrix Factorization
- git
- WebOS
- level1
- build
- 대학원일기
- 자바
- MSBuild
- 안드로이드스튜디오
- 프로그래머스
- 휴학
- SQL
- 컨트리뷰톤
- 파이썬
- D3
- py
- Github
- level4
- Python
- LEVEL2
- java
Archives
- Today
- Total
bit가 눈 앞에서 왔다갔다
Py) 프로그래머스 42747 본문
https://programmers.co.kr/learn/courses/30/lessons/4274
다시 보기
def solution(citations):
citations.sort(reverse=True)
h=len(citations)
while True:
cnt = 0
for c in citations:
if c >= h:
cnt += 1 # cnt는 인용수
if cnt >= h:
return h
h -= 1
return answer
문제가.. 말이.. ,,
반응형
'Algorithm > Prob' 카테고리의 다른 글
SQL) 프로그래머스 59035 (0) | 2022.01.13 |
---|---|
SQL) 프로그래머스 59034 (0) | 2022.01.13 |
Py) 프로그래머스 42862 (0) | 2022.01.12 |
Py) 프로그래머스 42627 (0) | 2022.01.12 |
Py ) 프로그래머스 60057 + 1/16다시풀기 (0) | 2022.01.10 |
Comments