Medium
Given an array nums in which exactly two elements appear only once and all the others appear exactly twice, return the two single numbers sorted in ascending order. Use O(n) time and O(1) extra space.
Input: nums = [1,2,1,3,2,5] Output: [3,5]
Input: nums = [0,1] Output: [0,1]