@@ -12,7 +12,7 @@ Here's what you need to know:
12
12
- The program should accept two parameters: rows and columns. The maze should be between 5 and 100 cells in size.
13
13
- A maze which is ` x ` columns wide and ` y ` rows high should be ` 2x + 1 ` characters wide and ` 2y + 1 ` characters high.
14
14
- If no seed is provided, generate a random maze. If the same seed is provided multiple times, the resulting maze should be the same each time.
15
- - Use [ box-drawing] [ Box -drawing] characters to draw walls, and an arrow symbol (⇨) for the entrance on the left and exit on the right.
15
+ - Use [ box-drawing] [ box -drawing] characters to draw walls, and an arrow symbol (⇨) for the entrance on the left and exit on the right.
16
16
17
17
It's time to create some perfect mazes for these adventurous mice!
18
18
@@ -60,18 +60,18 @@ You can use any algorithm to generate a perfect maze. The [recursive backtracker
60
60
61
61
### Box drawing characters
62
62
63
- | Character | Name | Unicode |
64
- | :---------: | :-------------------------------------- | :-------- |
65
- | ┌ | box drawings light down and right | U+250C |
66
- | ─ | box drawings light horizontal | U+2500 |
67
- | ┬ | box drawings light down and horizontal| U+252C |
68
- | ┐ | box drawings light down and left | U+2510 |
69
- | │ | box drawings light vertical | U+2502 |
70
- | └ | box drawings light up and right | U+2514 |
71
- | ┴ | box drawings light up and horizontal | U+2534 |
72
- | ┘ | box drawings light up and left | U+2518 |
73
- | ├ | box drawings light vertical and right | U+2520 |
74
- | ⇨ | rightwards white arrow | U+21E8 |
63
+ | Character | Name | Unicode |
64
+ | :-------: | :------------------------------------- | :------ |
65
+ | ┌ | box drawings light down and right | U+250C |
66
+ | ─ | box drawings light horizontal | U+2500 |
67
+ | ┬ | box drawings light down and horizontal | U+252C |
68
+ | ┐ | box drawings light down and left | U+2510 |
69
+ | │ | box drawings light vertical | U+2502 |
70
+ | └ | box drawings light up and right | U+2514 |
71
+ | ┴ | box drawings light up and horizontal | U+2534 |
72
+ | ┘ | box drawings light up and left | U+2518 |
73
+ | ├ | box drawings light vertical and right | U+2520 |
74
+ | ⇨ | rightwards white arrow | U+21E8 |
75
75
76
76
[ recursive-backtracker ] : https://en.wikipedia.org/wiki/Maze_generation_algorithm
77
- [ Box -drawing] : https://en.wikipedia.org/wiki/Box-drawing_character
77
+ [ box -drawing] : https://en.wikipedia.org/wiki/Box-drawing_character
0 commit comments