diff --git a/climbing-stairs/Lustellz.ts b/climbing-stairs/Lustellz.ts new file mode 100644 index 000000000..457652306 --- /dev/null +++ b/climbing-stairs/Lustellz.ts @@ -0,0 +1,9 @@ +// week2 goal +// not knowing how to express, I googled and referenced a bit +function climbStairs(n: number): number { + let stairArray: number[] = [1,2] + for(let i = 2;i