We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 469e581 commit 23405c3Copy full SHA for 23405c3
Python/climbing-stairs.py
@@ -1,6 +1,9 @@
1
# Time: O(logn)
2
# Space: O(1)
3
4
+import itertools
5
+
6
7
class Solution(object):
8
def climbStairs(self, n):
9
"""
0 commit comments