问题 So if I was given a sorted list/array i.e. [1,6,8,15,40], the size of the array, and the requested number.. How would you find the minimum number of values required from that list to sum to the requested number? For example given the array [1,6,8,15,40], I requested the number 23, it would take 2 values from the list (8 and 15) to equal 23. The function would then return 2 (# of values). Furthermore, there are an unlimited number of 1s in the array (so you the function will always return a