def helper(candidates, strt, target, arry): if target == 0: return arry if target < 0: return for i in range(strt, len(candidates))