Skip to content

Commit e39dc00

Browse files
committed
25: Finished maze using DepthFirst Search and A*!
1 parent 980d3a8 commit e39dc00

18 files changed

+1193
-81
lines changed

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ If you have any questions, you can contact me by email morasiu2@gmail.com
88
## How to run/compile
99

1010
* **Python** - just run script using Pyhton 3 (for example. `python script.py`)
11-
* **C#** - you can run it using `mono` or clicking on Windows, and compile by `mcs`:
11+
* **C#** - you can run it using `mono` or clicking on exe, and compile by `mcs`:
1212
* compile - `mcs script.cs`
1313
* run - `mono script.exe`
1414
* **Rust** -
@@ -50,12 +50,12 @@ If you have any questions, you can contact me by email morasiu2@gmail.com
5050

5151
## Progress
5252

53-
24/100
53+
25/100
5454

5555
■■■■■■■■■■■■■□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□
5656

5757
All - **100** <br>
58-
Done - **24** <br>
58+
Done - **25** <br>
5959

6060
* <a name="00">00</a> Name Generator - 29.01.2018 *Done* (`Python 3`) <br>
6161
![00](docs/images/00.png)
@@ -127,8 +127,9 @@ using (WebClient client = new WebClient()) {
127127
As you see, not really a challenge. Let's move on
128128
* <a name="24">24</a> Sudoku (with resolver) - 19.09.2018 *Done* (`C#`)<br>
129129
![24](docs/images/24.png)
130-
* <a name="25">25</a> Maze generator (with resolver) - 13.11.2018 *Partial done* (`C#`)<br>
130+
* <a name="25">25</a> Maze generator (with resolver using A*) - 14.11.2018 *Done* (`C#`)<br>
131131
![25_1](docs/images/25_1.gif)
132+
![25_2](docs/images/25_2.gif)
132133
## Bonus
133134

134135
* <a name="bonus1">1.</a> Loading animation in console 24.02.2018 *Done* (`C#`) ![Bonus 1](docs/images/bonus1.gif)
39.4 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"runtimeTarget": {
3+
"name": ".NETCoreApp,Version=v2.1",
4+
"signature": "1c8b66a6f69bdfe21cbd32dc4af573ec0fd7f9ec"
5+
},
6+
"compilationOptions": {},
7+
"targets": {
8+
".NETCoreApp,Version=v2.1": {
9+
"ProgrammingChallenges/1.0.0": {
10+
"dependencies": {
11+
"OptimizedPriorityQueue": "4.1.1"
12+
},
13+
"runtime": {
14+
"Maze.dll": {}
15+
}
16+
},
17+
"OptimizedPriorityQueue/4.1.1": {
18+
"runtime": {
19+
"lib/netstandard1.0/Priority Queue.dll": {
20+
"assemblyVersion": "4.1.1.0",
21+
"fileVersion": "4.1.1.0"
22+
}
23+
}
24+
}
25+
}
26+
},
27+
"libraries": {
28+
"ProgrammingChallenges/1.0.0": {
29+
"type": "project",
30+
"serviceable": false,
31+
"sha512": ""
32+
},
33+
"OptimizedPriorityQueue/4.1.1": {
34+
"type": "package",
35+
"serviceable": true,
36+
"sha512": "sha512-d5XJqkj122UrGrBt/7DQuseohSjuQj7uB7nrxaQV2RHQJ3BdGyoIHtYOrKEx54G2ldUT8HDfjV/6ag2FHCnTyA==",
37+
"path": "optimizedpriorityqueue/4.1.1",
38+
"hashPath": "optimizedpriorityqueue.4.1.1.nupkg.sha512"
39+
}
40+
}
41+
}
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"runtimeOptions": {
3+
"tfm": "netcoreapp2.1",
4+
"framework": {
5+
"name": "Microsoft.NETCore.App",
6+
"version": "2.1.0"
7+
}
8+
}
9+
}
Binary file not shown.
485 KB
Binary file not shown.

0 commit comments

Comments
 (0)