Open aditya109 opened 3 years ago
i can solve this issue.. i am a beginner with knowledge of c,c++,java and a bit of golang..can u assign me this issue?
Hi @tamal-kundu ! I have assigned this issue to you. Before raising a PR, please take a look at CONTRIBUTING.md and follow the guidelines. Also, if it is not too much to ask, please consider starring ⭐ the repository. It helps boost the repo popularity and guide more people towards active contribution. That is all. Happy hacking !
Given an array of distinct integers
candidates
and a target integertarget
, return a list of all unique combinations ofcandidates
where the chosen numbers sum totarget
. You may return the combinations in any order.The same number may be chosen from
candidates
an unlimited number of times. Two combinations are unique if the frequency of at least one of the chosen numbers is different.It is guaranteed that the number of unique combinations that sum up to
target
is less than150
combinations for the given input.Example 1:
Example 2:
Example 3:
Example 4:
Example 5:
Constraints:
1 <= candidates.length <= 30
1 <= candidates[i] <= 200
candidates
are distinct.1 <= target <= 500
Reference: https://leetcode.com/problems/combination-sum/