码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode274

时间:2020-04-06 10:06:40      阅读:61      评论:0      收藏:0      [点我收藏+]

标签:例子   pre   span   ati   要求   elf   max   ons   目的   

 1 class Solution:
 2     def hIndex(self, citations: List[int]) -> int:
 3         n = len(citations)
 4         if n == 0:
 5             return 0
 6         citations = sorted(citations,reverse=True)
 7         
 8         for i in range(n):
 9             if i+1 >= citations[i]:
10                 return max(citations[i],i)
11         nonZero = 0
12         for i in range(n):
13             if citations[i] != 0:
14                 nonZero += 1
15         return nonZero

这题目如果对h-index不是特别清楚的话,光看题目的描述,对题目的要求是很难理解清楚的。

难怪给了800多个差评。

应该多给一些有代表性的例子。

leetcode274

标签:例子   pre   span   ati   要求   elf   max   ons   目的   

原文地址:https://www.cnblogs.com/asenyang/p/12640530.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!