Given an integer array nums of unique elements, return all possible course Schedule (the power set). The solution set must not contain duplicate course Schedule. Return the solution in any order.
Given an integer array nums of unique elements, return all possible reconstruct Itinerary (the power set). The solution set must not contain duplicate reconstruct Itinerary. Return the solution in any order.
Given an integer array nums of unique elements, return all possible subsets (the power set). The solution set must not contain duplicate subsets. Return the solution in any order.
Given an array of distinct integers candidates and a target integer target, return a list of all unique combinations of candidates where the chosen numbers sum to target.