mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-04 15:39:42 +08:00
merge: add test case and description (#842)
This commit is contained in:
@ -1,7 +1,10 @@
|
||||
/*
|
||||
* You are climbing a stair case. It takes n steps to reach to the top.
|
||||
* Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?
|
||||
*/
|
||||
/**
|
||||
* @function ClimbStairs
|
||||
* @description You are climbing a stair case. It takes n steps to reach to the top.Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?
|
||||
* @param {Integer} n - The input integer
|
||||
* @return {Integer} distinct ways can you climb to the top.
|
||||
* @see [Climb_Stairs](https://www.geeksforgeeks.org/count-ways-reach-nth-stair/)
|
||||
*/
|
||||
|
||||
const climbStairs = (n) => {
|
||||
let prev = 0
|
||||
|
Reference in New Issue
Block a user