Leetcode练习(python):第414题:第三大的数:给定一个非空数组,返回此数组中第三大的数。如果不存在,则返回数组中最大的数。要求算法时间复杂度必须是O(n)。
2021-01-04 22:29
标签:使用 self dma 时间 pytho 思路 解释 iar continue 题目: 第三大的数:给定一个非空数组,返回此数组中第三大的数。如果不存在,则返回数组中最大的数。要求算法时间复杂度必须是O(n)。 示例 1: 输入: [3, 2, 1] 输出: 1 解释: 第三大的数是 1. 输入: [1, 2] 输出: 2 解释: 第三大的数不存在, 所以返回最大的数 2 . 输入: [2, 2, 3, 1] 输出: 1 解释: 注意,要求返回第三大的数,是指第三大且唯一出现的数。 思路: 今天刷刷简单题,使用第一反应来快速解题。 程序: Leetcode练习(python):第414题:第三大的数:给定一个非空数组,返回此数组中第三大的数。如果不存在,则返回数组中最大的数。要求算法时间复杂度必须是O(n)。 标签:使用 self dma 时间 pytho 思路 解释 iar continue 原文地址:https://www.cnblogs.com/zhuozige/p/12983283.html
示例 2:
示例 3:
存在两个值为2的数,它们都排第二。class Solution:
def thirdMax(self, nums: List[int]) -> int:
if not nums:
return
if len(nums) == 1:
return nums[0]
if len(nums) == 2:
return max(nums)
nums = sorted(nums)
nums.reverse()
auxiliary = []
for index in range(len(nums)):
if nums[index] not in auxiliary:
auxiliary.append(nums[index])
else:
continue
if len(auxiliary) > 2:
return auxiliary[2]
elif len(auxiliary)
上一篇:Python多线程之死锁
文章标题:Leetcode练习(python):第414题:第三大的数:给定一个非空数组,返回此数组中第三大的数。如果不存在,则返回数组中最大的数。要求算法时间复杂度必须是O(n)。
文章链接:http://soscw.com/index.php/essay/40126.html