Solution: Staircase Problem
This review contains a detailed analysis of the different ways to solve the staircase problem.
We'll cover the following...
We'll cover the following...
Solution 1: brute force
Explanation
This solution works very similarly to the Fibonacci problem’s recursive solution. In fact, it follows the same pattern. The main idea is that if you have n stairs then you can hop either 1 step, 2 step, 3 step.
- If you hop 1 step then you have remaining stairs
- If you hop 2 steps then you have remaining stairs
- If you hop 3 steps then you have