题目:
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;
}