Skip to content

Commit e81a0e3

Browse files
committed
Fix : climbing-stairs line lint fix
1 parent cf25207 commit e81a0e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

climbing-stairs/sungjinwi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ def climbStairs(self, n: int) -> int:
1818
prv, cur = 1, 2
1919
for _ in range(3, n + 1) :
2020
prv, cur = cur, prv + cur
21-
return (cur)
21+
return (cur)

0 commit comments

Comments
 (0)