-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpath_finder.py
76 lines (59 loc) · 1.58 KB
/
path_finder.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
71
72
73
74
75
76
"""
https://www.codewars.com/kata/path-finder-number-1-can-you-reach-the-exit/train/python
"""
def find_path(maze):
maze = maze.split('\n')
len_x = len(maze[0])
len_y = len(maze[1])
explored_paths = []
unexplored_paths = [(0, 0)]
while unexplored_paths:
path = unexplored_paths.pop()
x = path[0]
y = path[1]
if x == len_x and y == len_y:
return True
explored_paths.append(path)
east = (x - 1, y)
if x != 0 and east not in explored_paths and east not in unexplored_paths and maze[east[0]][east[1]] != 'W':
unexplored_paths.append(east)
west = (x + 1, y)
if x + 1 != len_x and west not in explored_paths and west not in unexplored_paths and maze[west[0]][west[1]] != 'W':
unexplored_paths.append(west)
south = (x, y - 1)
if y != 0 and south not in explored_paths and south not in unexplored_paths and maze[south[0]][south[1]] != 'W':
unexplored_paths.append(south)
north = (x, y + 1)
if y + 1 != len_y and north not in explored_paths and north not in unexplored_paths and maze[north[0]][north[1]] != 'W':
unexplored_paths.append(north)
return False
a = "\n".join([
".W.",
".W.",
"..."
])
b = "\n".join([
".W.",
".W.",
"W.."
])
c = "\n".join([
"......",
"......",
"......",
"......",
"......",
"......"
])
d = "\n".join([
"......",
"......",
"......",
"......",
".....W",
"....W."
])
assert find_path(a)
assert not find_path(b)
assert find_path(c)
assert not find_path(d)