Skip to content

70-climbing-stairs

DevGod
DevGod
Vtuber
int climbStairs(int n) {
if(n <= 3){return n;}
return climbStairs(n-1)+climbStairs(n-2);
}