LeetCode 五月打卡-day08
Posted 王六六的IT日常
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 五月打卡-day08相关的知识,希望对你有一定的参考价值。
class Solution
public List<Integer> findDuplicates(int[] nums)
List<Integer> ans = new ArrayList<>();
int n = nums.length;
for (int i = 0; i < n; i++)
int t = nums[i];
if (t < 0 || t - 1 == i) continue;
if (nums[t - 1] == t)
ans.add(t);
nums[i] *= -1;
else
int c = nums[t - 1];
nums[t - 1] = t;
nums[i--] = c;
return ans;
以上是关于LeetCode 五月打卡-day08的主要内容,如果未能解决你的问题,请参考以下文章