yan chuanli 2 年之前
父节点
当前提交
cae99c32d7
共有 2 个文件被更改,包括 14 次插入0 次删除
  1. 14 0
      climb_stairs.py
  2. 二进制
      string_match/__pycache__/long_common_pre.cpython-310-pytest-7.1.2.pyc

+ 14 - 0
climb_stairs.py

@@ -0,0 +1,14 @@
+def climbStairs(n: int) -> int:
+    if n < 1 or n > 45:
+        return 0
+    else:
+        a = 1
+        b = 1
+        for i in range(2, n + 1):
+            a, b = b, a + b
+        return b
+
+print(climbStairs(4))
+
+
+

二进制
string_match/__pycache__/long_common_pre.cpython-310-pytest-7.1.2.pyc