Task
Your solution from puzzle 49 should output the total number of combinations possible, however it doesn’t say what these combinations are.
Improve your solution so that the different combinations the staircase can be climbed in are returned.
Caveat:
- The solution for this problem should make use of dynamic programming instead of simple recursion.
Starter Code