Just a crude documentation of personal learning on recursive functions and memoization. Each script is a function aimed to solve a specific problem, while comparing the difference in execution time between memoized versus non-memoized version.
This function that checks if a given integer can be added up by a given list of smaller/equal integers.
Similar to howSum
function, but with an additional feature where it outputs the least numbers required to obtain the target number.