class Solution:
def findKthLargest(self, nums, k):
"""
:type nums: List[int]
:type k: int
:rtype: int
"""
sortNum = sorted(nums, reverse=True)
return sortNum[k - 1]
2023-04-07 06:48:34 阅读次数:251
class Solution:
def findKthLargest(self, nums, k):
"""
:type nums: List[int]
:type k: int
:rtype: int
"""
sortNum = sorted(nums, reverse=True)
return sortNum[k - 1]
上一篇:django-演练-英雄的编辑
python算法面试题
【数据结构与算法】之数组系列
【算法】算法题-反转字符串
数据结构与算法相关题解
【数据结构与算法】之排序系列-检查整数及其两倍数是否存在
【数据结构与算法】之排序系列-三个数的最大乘积
【数据结构与算法】之数组系列-第三大的数
【数据结构与算法】之数组系列-三数之和
【数据结构与算法】之数组系列-两数之和 II - 输入有序数组
【数据结构与算法】之数组系列-加一
文章
25746
阅读量
3144610
2024-11-15 06:46:14
2024-11-15 06:46:02
2024-11-14 08:05:55
2024-11-12 06:28:44
2024-11-07 08:17:34
2024-11-07 08:17:34
2023-06-08 06:23:00
2023-04-13 09:36:44
2023-02-24 09:13:25
2023-04-17 09:39:09
2023-04-18 14:14:25
2023-02-22 06:11:15