码迷,mamicode.com
首页 > 其他好文 > 详细

[leetcode]645. Set Mismatch

时间:2018-01-25 21:52:34      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:span   div   hash   mis   class   public   ror   pos   ret   

两种方法

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

标签:span   div   hash   mis   class   public   ror   pos   ret   

原文地址:https://www.cnblogs.com/stAr-1/p/8353029.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!