In the town of Digitville, there was a list of numbers called nums containing integers from 0 to n - 1. Each number was supposed to appear exactly once in the list, however, two mischievous numbers sneaked in an additional time, making the list longer than usual.
As the town detective, your task is to find these two sneaky numbers. Return an array of size two containing the two numbers (in any order), so peace can return to Digitville.
Sort the array and iterate through it to find consecutive duplicates, as the duplicates will be adjacent after sorting.
Example Input: nums = [0,1,1,0]
Sorted: [0,0,1,1]
Iterate:
Answer: [0,1]
class Solution {
    public int[] getSneakyNumbers(int[] nums) {
        Arrays.sort(nums);
        int[] ans = new int[2];
        int index = 0;
        for (int i = 0; i < nums.length - 1; i++) {
            if (nums[i] == nums[i + 1]) {
                ans[index++] = nums[i];
                i++;
            }
            if (index == 2) {
                break;
            }
        }
        return ans;
    }
}
Use a HashMap to count the frequency of each number, then iterate through the map to find numbers with count >= 2.
Example Input: nums = [0,1,1,0]
Map after counting: {0:2, 1:2}
Iterate map entries:
Answer: [0,1]
class Solution {
    public int[] getSneakyNumbers(int[] nums) {
        HashMap<Integer, Integer> map = new HashMap<>();
        for (int num : nums) {
            map.put(num, map.getOrDefault(num, 0) + 1);
        }
        int[] ans = new int[2];
        int index = 0;
        for (Map.Entry<Integer, Integer> entry : map.entrySet()) {
            if (entry.getValue() >= 2) {
                ans[index++] = entry.getKey();
            }
        }
        return ans;
    }
}