[leetcode]645. Set Mismatch

Posted stAr_1

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[leetcode]645. Set Mismatch相关的知识,希望对你有一定的参考价值。

两种方法

public int[] findErrorNums(int[] nums) {
        int[] res = new int[2];
        Set<Integer> set = new HashSet<>();
        int sum = 0;
        int l = nums.length;
        int target = 0;
        for (int i = 0; i < nums.length; i++) {
            if (set.contains(nums[i]))
                target = i;
            set.add(nums[i]);
            sum+=nums[i];
        }
        res[0] = nums[target];
        res[1] = (l+1)*l/2-sum+nums[target];
        return res;
    }
    public int[] findErrorNums2(int[] nums) {
        int[] res = new int[2];
        for (int a :
                nums) {
            if (nums[Math.abs(a)-1] >0) nums[Math.abs(a)-1] *=-1;
            else
            {
                res[0] = Math.abs(a);
            }
        }
        for (int i = 0; i < nums.length; i++) {
            if (nums[i]>0)
            {
                res[1] = i+1;
            }
        }
        return res;
    }

 

以上是关于[leetcode]645. Set Mismatch的主要内容,如果未能解决你的问题,请参考以下文章

645. Set Mismatch - LeetCode

LeetCode 645. Set Mismatch (集合不匹配)

leetcode 645. 错误的集合(Set Mismatch)

leetcode 645. Set Mismatch——凡是要节约空间的题目 都在输入数据上下功夫 不要担心破坏原始的input

645. Set Mismatch

645. Set Mismatch