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

leetcode275

时间:2020-04-06 09:24:25      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:binary   arch   class   index   lse   tco   color   ble   ret   

 1 class Solution:
 2     def hIndex(self, citations):
 3         citations_len = len(citations)
 4         if citations_len<=0:
 5             return 0
 6         low = 0
 7         high = citations_len-1
 8         h_idx = 0
 9         while low <= high:
10             mid = (low+high)//2
11             if citations[mid] >= citations_len-mid:
12                 h_idx = citations_len-mid
13                 high = mid-1
14             else:
15                 low = mid+1
16         return h_idx

参考:https://leetcode.com/problems/h-index-ii/discuss/525117/Python-solution-binary-search

这题做起来感觉很糟。

leetcode275

标签:binary   arch   class   index   lse   tco   color   ble   ret   

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

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