Skip to content

Commit 7b54c93

Browse files
authored
Update climbing_stairs.py
1 parent c8bf39c commit 7b54c93

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

climbing_stairs.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf-8 -*-
1+
# coding: utf-8
22

33
class Solution:
44
"""
@@ -17,4 +17,6 @@ def climbStairs(self, n):
1717
ret = f_1 + f_2
1818
f_1 = f_2
1919
f_2 = ret
20-
return ret
20+
return ret
21+
22+
# easy: http://lintcode.com/problem/climbing-stairs

0 commit comments

Comments
 (0)