일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 20201015뉴스
- C++
- 20200615뉴스
- 뉴스
- 기사헤드라인
- LeetCode #Python #알고리즘 #코딩테스트 #interview
- 20201013뉴스
- 기사
- 파이썬
- MySQL
- 헤드라인기사
- 뉴스헤드라인
- 크롤링
- 오늘의뉴스
- 20201011뉴스
- 백준
- Python
- 헤드라인뉴스
- 백준2225
- encoding
- 20201017뉴스
- 알고리즘
- json
- 헤드라인모음
- 20201016뉴스
- 헤드라인
- 경제뉴스
- 20201018뉴스
- 코테
- 20200816뉴스
Archives
- Today
- Total
HelloCho
[Python] #274. H-Index(Medium) 본문
문제
이 문제는 주어진 리스트에서 H개 이상 citation이 된 것들을 찾는 문제로 H index를 찾는 문제이다.
class Solution:
def hIndex(self, citations) -> int:
if not citations :
return 0
citations.sort(reverse=True)
for idx, citation in enumerate(citations):
if idx + 1 > citation :
return idx
return idx + 1
citations list를 내림차순으로 정렬한다.
idx의 값이 citation의 값보다 커질경우 return 한다. 그렇지 않을 경우에는 idx + 1 값을 return한다.
결과
'코테 > LeetCode' 카테고리의 다른 글
[Python] #189. Rotate Array(easy) (0) | 2020.09.30 |
---|---|
[Python] #H-Index2(Medium) (0) | 2020.09.30 |
[Python] #125. Valid Palindrome(easy) (0) | 2020.09.30 |
[Python] #204. Count Primes(easy) (0) | 2020.09.30 |
[Python] #1351. Count Negative Numbers in a Sorted Matrix(easy) (0) | 2020.09.29 |
Comments