Given two integers n and k, return all possible combinations of k numbers out of the range [1, n].
You may return the answer in any order.
1 | class Solution { |
Given two integers n and k, return all possible combinations of k numbers out of the range [1, n].
You may return the answer in any order.
1 | class Solution { |