import java.util.*;


public class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     *
     * @param nums int整型一维数组
     * @return int整型一维数组
     */
    public int[] FindNumsAppearOnce (int[] nums) {
        // write code here
        // 定义结果集
        int[] res = new int[2];
        // 记录元素出现次数
        HashMap<Integer, Integer> map = new HashMap<>();
        for (int i = 0; i < nums.length; i ++) {
            if (map.containsKey(nums[i])) {
                map.put(nums[i], map.get(nums[i]) + 1);
            } else {
                map.put(nums[i], 1);
            }
        }
        int index = 1;
        for (Integer val : map.keySet()) {
            if (map.get(val) == 1) {
                res[index] = val;
                index --;
            }
        }
        Arrays.sort(res);
        return res;
    }
}