Skip to content

Commit 2d27f84

Browse files
committed
fix: add additional line for climbing stairs solution
1 parent 6966176 commit 2d27f84

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

climbing-stairs/radiantchoi.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@ def climbStairs(self, n: int) -> int:
77
stairs.append(stairs[i - 1] + stairs[i - 2])
88

99
return stairs[-1]
10-

0 commit comments

Comments
 (0)