LeetCode: https://leetcode.com/problems/subsets/
Given an integer array nums of unique elements, return all possible subsets (the power set).
i
1
0
2
1
3
2
cur=[]
res=[]
Step 1 / 7
Step 1:
Start dfs(i=0) with cur=[] and res=[].
Pointers: i=0
Focus: select @ [0]