-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathsolution_12.py
37 lines (28 loc) · 1.02 KB
/
solution_12.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
def coding_problem_12(budget, choices):
"""
There exists a staircase with N steps, and you can climb up either 1 or 2 steps at a time. Given N, write a
function that returns the number of unique ways you can climb the staircase. The order of the steps matters.
For example, if N is 4, then there are 5 unique ways:
1, 1, 1, 1
2, 1, 1
1, 2, 1
1, 1, 2
2, 2
What if, instead of being able to climb 1 or 2 steps at a time, you could climb any number from a set of positive
integers X? For example, if X = {1, 3, 5}, you could climb 1, 3, or 5 steps at a time.
Example:
>>> coding_problem_12(4, [1, 2])
5
"""
if budget == 0:
return 1 # leaf case
available_choices = [c for c in choices if c <= budget]
if not available_choices:
return 0 # unfeasible
count = 0
for c in available_choices:
count += coding_problem_12(budget - c, choices)
return count
if __name__ == '__main__':
import doctest
doctest.testmod(verbose=True)