Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Recursion

  • 0 stair has 0 way
  • 1 stair has 1 way
  • 2 stairs have 2 ways (0->1->2, 0->2)
  • 3 stairs have 3 ways (0->1->2->3, 0->2->3, 0-1->3)
  • ...

stair 3 come be jump from stair 1(1 ways from 0 to here) and stair 2(2 ways from 0 to here).

so...

climbStairs(n) = climbStairs(n - 1) + climbStairs(n - 2)

put stair i into cache.