Implement `subsets(nums)` returning all subsets (the power set). Build them by recursing in index order so subsets appear in the standard backtracking order.
Run your code to see results.