Set Mismatch

题目:

The set S originally contains numbers from 1 to n. But unfortunately, due to the data error, one of the numbers in the set got duplicated to another number in the set, which results in repetition of one number and loss of another number.

Given an array nums representing the data status of this set after the error. Your task is to firstly find the number occurs twice and then find the number that is missing. Return them in the form of an array.

Example
Input: nums = [1,2,2,4]
Output: [2,3]

Note:
The given array size will in the range [2, 10000].
The given array's numbers won't have any order.

分析:
easy....

public int[] findErrorNums(int[] nums) {
        int[] ans = new int[2];
        if(nums.length == 0) return ans;

        int sum = 0;
        int duplicated = 0;
        // Put all numbers into hash tables, if a number is in it already, it is duplicated
        HashMap<Integer, Boolean> map = new HashMap<Integer, Boolean>();
        for(int i = 0; i < nums.length; i++) {
            sum = sum + nums[i];
            Boolean exist = map.get(nums[i]);
            if(exist != null) {
                duplicated = nums[i];
            }
            else {
                map.put(nums[i], true);
            }
        }

        // Calculate Sn = 1+2+...+n, Calculate sum of the array, Sn - sum - duplicated number
        sum = sum - duplicated;
        int Sn = nums.length*(nums.length+1)/2;
        ans[0] = duplicated;
        ans[1] = Sn - sum;
        return ans;
    }
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

友情链接更多精彩内容