-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput_puzzles.py
42 lines (35 loc) · 1017 Bytes
/
input_puzzles.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
puzzle4x5 = [
[ '*' , '*' , '*' ,(6,''),( 3,'')],
[ '*' ,( 4,''),( 3, 3), '-' , '-' ],
[('',10), '-' , '-' , '-' , '-' ],
[ ('', 3), '-' , '-' , '*' , '*' ]]
puzzle4x4 = [
[ '*' ,(10,''),(13,''), '*' ],
[('', 3), '-' , '-' ,(13,'')],
[('',12), '-' , '-' , '-' ],
[('',21), '-' , '-' , '-' ],
]
puzzle7x7=[
['*',(19,''),(9,'') ,'*',(24,''),(12,''),(16,'')],
[('',4),'-','-' ,('',23),'-','-','-'],
[('',10),'-','-',(18,13),'-','-','-'],
[('',24),'-','-','-','-',(21,''),(11,'')],
['*',(9,''),(10,27),'-','-','-','-'],
[('',7),'-','-','-',('',13),'-','-'],
[('',23),'-','-','-',('',5),'-','-']
]
puzzle5x5=[
['*','*',(29,''),(10,''),(4,'')],
['*',('',9),'-','-','-'],
['*',(4,16),'-','-','-'],
[('',12),'-','-','-','*'],
[('',10),'-','-','-','*']
]
puzzle6x6=[
['*','*',(15,''),(16,''),'*','*'],
['*',(10,14),'-','-',(13,''),'*'],
[('',15),'-','-','-','-',(14,'')],
[('',15),'-','-',(17,13),'-','-'],
['*',('',17),'-','-','-','-'],
['*','*',('',11),'-','-','*']
]