Medium
Given an array nums of unique integers, return all possible subsets (the power set). The result may be in any order; this judge compares them order-independently.
Input: nums = [1,2,3] Output: [[],[1],[2],[3],[1,2],[1,3],[2,3],[1,2,3]]
Input: nums = [0] Output: [[],[0]]