LeetCode 五月打卡-day08

Posted 王六六的IT日常

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 五月打卡-day08相关的知识,希望对你有一定的参考价值。

442. 数组中重复的数据

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的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 五月打卡-day01

LeetCode 五月打卡-day20

LeetCode 五月打卡-day17

LeetCode 五月打卡-day19

LeetCode 五月打卡-day07

LeetCode 五月打卡-day13