45. Set Mismatch - Jake blog - Java coding practice log (2017)" /> 45. Set Mismatch - Jake blog - Java coding practice log (2017)" />

645. 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 1:

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

Note:

  1. The given array size will be in the range [2, 10000].
  2. The given array’s numbers won’t have any order.

This problem looks easy, but it's a bit difficult to write. I used a shortcut, but there's actually a higher-order method (self-traversal), which I'll write about later.

class Solution { public int[] findErrorNums(int[] nums) { HashSet set = new HashSet(); int[] res = new int[2]; int sum = nums.length*(nums.length+1)/2; for(int i=1;i<=nums.length;i++){ if(!set.add(nums[i-1])){ res[0] = nums[i-1]; } sum -= nums[i-1]; } res[1] = sum+res[0]; return res; } }

This siteOriginal articleAll follow "Attribution-NonCommercial-ShareAlike 4.0 License (CC BY-NC-SA 4.0)Please retain the following annotations when sharing or adapting:

Original author:Jake Tao,source:"645. Set Mismatch"

235
0 0 235

Further Reading

Post a reply

Log inYou can only comment after that.
Share this page
Back to top