题目来源 https://leetcode.com/problems/subsets/ Given a set of distinct integers, nums, return all possible subsets. Note: Elements in a subset must be in non-descending order. The solution set must not contain duplicate subsets. 题意分析 Input: :type nums:…