leetcode_442. 数组中重复的数据
2021-03-02 19:26
标签:etc 链接 复杂 for pen app res 元素 dup leetcode_442. 数组中重复的数据 标签:etc 链接 复杂 for pen app res 元素 dup 原文地址:https://www.cnblogs.com/hqzxwm/p/14402821.html给定一个整数数组 a,其中1 ≤ a[i] ≤ n (n为数组长度), 其中有些元素出现两次而其他元素出现一次。
找到所有出现两次的元素。
你可以不用到任何额外空间并在O(n)时间复杂度内解决这个问题吗?
示例:
输入:
[4,3,2,7,8,2,3,1]
输出:
[2,3]
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/find-all-duplicates-in-an-array
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
from typing import List
class Solution:
def findDuplicates(self, nums: List[int]) -> List[int]:
res=[]
for i in range(len(nums)):
if nums[abs(nums[i])-1]
文章标题:leetcode_442. 数组中重复的数据
文章链接:http://soscw.com/index.php/essay/59167.html