-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy path362.py
48 lines (35 loc) · 1.09 KB
/
362.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
38
39
40
41
42
43
44
45
46
47
48
"""
Problem:
A strobogrammatic number is a positive number that appears the same after being rotated
180 degrees. For example, 16891 is strobogrammatic.
Create a program that finds all strobogrammatic numbers with N digits.
"""
from typing import List
def get_strobogrammatic_numbers_helper(N: int) -> List[str]:
if N == 0:
return [""]
if N == 1:
return ["1", "8", "0"]
smaller_strobogrammatic_numbers = get_strobogrammatic_numbers_helper(N - 2)
strob_numbers = []
for x in smaller_strobogrammatic_numbers:
strob_numbers.extend(
[
"1" + x + "1",
"6" + x + "9",
"9" + x + "6",
"8" + x + "8",
]
)
return strob_numbers
def get_strobogrammatic_numbers(N: int) -> List[int]:
return [int(num) for num in get_strobogrammatic_numbers_helper(N)]
if __name__ == "__main__":
print(get_strobogrammatic_numbers(1))
print(get_strobogrammatic_numbers(2))
print(get_strobogrammatic_numbers(3))
"""
SPECS:
TIME COMPLEXITY: O(4 ^ n)
SPACE COMPLEXITY: O(4 ^ n)
"""