Tip 1 : practice question
Tip 2 : competitive contest
Tip 3 : course online.
Tip 1 : concise and accurate
Tip 2 : no false information
3 coding question 90 mins



Note: Since the number of ways can be very large, return the answer modulo 1000000007.
N=3

We can climb one step at a time i.e. {(0, 1) ,(1, 2),(2,3)} or we can climb the first two-step and then one step i.e. {(0,2),(1, 3)} or we can climb first one step and then two step i.e. {(0,1), (1,3)}.



Implement code snippets from some functionality of a given project.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is the output of print(type("Python"))?