Subsets - Read Statement

Given an integer array nums of unique elements, return all possible subsets (the power set).

The solution must not contain duplicate subsets. Return in any order.

Example: For [1,2,3], return [[], [1], [2], [3], [1,2], [1,3], [2,3], [1,2,3]].