613
1 Like

DSA Crash Course [Part 71] - Sum Possible Approach

In this lesson, Alvin explores the strategy to solving the following interview problem:

Write a function sum_possible that takes in an amount and a list of positive numbers. The function should return a boolean indicating whether or not it is possible to create the amount by summing numbers of the list. You may reuse numbers of the list as many times as necessary.

You may assume that the