2019-07-16 05:26:28 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
|
2019-07-15 16:17:41 +00:00
|
|
|
def climb_stairs(n: int) -> int:
|
2019-07-16 05:26:28 +00:00
|
|
|
"""
|
|
|
|
LeetCdoe No.70: Climbing Stairs
|
|
|
|
Distinct ways to climb a n step staircase where
|
|
|
|
each time you can either climb 1 or 2 steps.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
n: number of steps of staircase
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Distinct ways to climb a n step staircase
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
AssertionError: n not positive integer
|
|
|
|
|
|
|
|
>>> climb_stairs(3)
|
|
|
|
3
|
|
|
|
>>> climb_stairs(1)
|
|
|
|
1
|
|
|
|
>>> climb_stairs(-7) # doctest: +ELLIPSIS
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
AssertionError: n needs to be positive integer, your input -7
|
|
|
|
"""
|
2021-02-23 05:53:49 +00:00
|
|
|
assert (
|
|
|
|
isinstance(n, int) and n > 0
|
|
|
|
), f"n needs to be positive integer, your input {n}"
|
2019-07-16 05:26:28 +00:00
|
|
|
if n == 1:
|
|
|
|
return 1
|
|
|
|
dp = [0] * (n + 1)
|
|
|
|
dp[0], dp[1] = (1, 1)
|
|
|
|
for i in range(2, n + 1):
|
|
|
|
dp[i] = dp[i - 1] + dp[i - 2]
|
|
|
|
return dp[n]
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
import doctest
|
|
|
|
|
|
|
|
doctest.testmod()
|