Skip to content

Commit 23405c3

Browse files
authored
Update climbing-stairs.py
1 parent 469e581 commit 23405c3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Python/climbing-stairs.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Time: O(logn)
22
# Space: O(1)
33

4+
import itertools
5+
6+
47
class Solution(object):
58
def climbStairs(self, n):
69
"""

0 commit comments

Comments
 (0)