leetcode---274.H指数

leetcode---274.H指数

class Solution:
    def hIndex(self, citations):
        if len(citations)==1:
            if citations[0]==1:
                return 1
            if citations[0]==0:
                return 0
        citations.sort(reverse=-1)
        h=0
        for i in range(len(citations)):
            if citations[i]<i+1:
                h=i
                break
        if citations[-1]>=len(citations):
            return len(citations)
        return h
上一篇:【剑指Offer1】左旋转字符串


下一篇:Python基础篇——列表使用