logo CodeStepByStep logo

canMakeSum

Language/Type: Java recursion backtracking
Related Links:

Write a recursive method named canMakeSum that accepts a list of integers and a target integer as parameters and and returns true if it is possible to have some set of values from the list that sum to the target value. For example, the list [1, 1, 2, 3, 5] and target value 9 should return true because 5 + 3 + 1 = 9. However, the list [1, 4, 5, 6] and target value 8 should return false.

Method: Write a Java method as described, not a complete program or class.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.