일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- SQL
- SWEA
- level3
- MSBuild
- BFS
- java
- D3
- level1
- git
- Github
- LEVEL2
- level4
- 안드로이드스튜디오
- androidstudio
- Python
- 자바
- py
- 컴퓨터비전
- 다시풀기
- 프로그래머스
- 파이썬
- 휴학
- 대학원
- 어렵다
- 컨트리뷰톤
- WebOS
- 대학원일기
- 내휴학생활중의아주큰일
- build
- Matrix Factorization
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