Skip to content

Commit 87b6ad0

Browse files
week 2: add a blank line
1 parent 0a7f3a0 commit 87b6ad0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

climbing-stairs/prograsshopper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ def climbStairs(self, n: int) -> int:
2222
max_count_2steps = n // 2
2323
for i in range(max_count_2steps + 1):
2424
ways += math.comb(n - i, i)
25-
return ways
25+
return ways

0 commit comments

Comments
 (0)