Climb Stairs With Variable Jumps
1. You are given a number n, representing the number of stairs in a staircase.Input Format
2. You are on the 0th step and are required to climb to the top.
3. You are given n numbers, where ith element's value represents - till how far from the step you
could jump to in a single move.
You can of course jump fewer number of steps in the move.
4. You are required to print the number of different paths via which you can climb to the top.
A number nOutput Format
.. n more elements
A number representing the number of ways to climb the stairs from 0 to top.Question Video
0 <= n <= 20Sample Input
0 <= n1, n2, .. <= 20
10Sample Output
3
3
0
2
1
2
4
2
0
0
5
-
Asked in Companies
-
Related Topics
Video Solution
Code Solution
{ }
{ }
Run