-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path967 Numbers With Same Consecutive Differences.py
70 lines (50 loc) · 1.74 KB
/
967 Numbers With Same Consecutive Differences.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/python3
"""
Return all non-negative integers of length N such that the absolute difference
between every two consecutive digits is K.
Note that every number in the answer must not have leading zeros except for the
number 0 itself. For example, 01 has one leading zero and is invalid, but 0 is valid.
You may return the answer in any order.
Example 1:
Input: N = 3, K = 7
Output: [181,292,707,818,929]
Explanation: Note that 070 is not a valid number, because it has leading zeroes.
Example 2:
Input: N = 2, K = 1
Output: [10,12,21,23,32,34,43,45,54,56,65,67,76,78,87,89,98]
Note:
1 <= N <= 9
0 <= K <= 9
"""
from typing import List
class Solution:
def __init__(self):
self.cache = {}
def numsSameConsecDiff(self, N: int, K: int) -> List[int]:
"""
dfs + memoization
"""
ret = []
for i in range(1, 10):
ret.extend(self.dfs(i, N, K))
if N == 1:
ret.append([0]) # special case
return list(
map(lambda x: int("".join(map(str, x))), ret)
)
def dfs(self, start: int, N: int, K: int) -> List[List[int]]:
if (start, N, K) not in self.cache:
ret = []
if N == 1:
ret = [[start]]
elif N > 1:
if start + K <= 9:
for e in self.dfs(start + K, N - 1, K):
ret.append([start] + e)
if start - K >= 0 and K != 0: # special case
for e in self.dfs(start - K, N - 1, K):
ret.append([start] + e)
self.cache[start, N, K] = ret
return self.cache[start, N, K]
if __name__ == "__main__":
Solution().numsSameConsecDiff(3, 7) == [181,292,707,818,929]