Skip to content

Commit

Permalink
Reduce maze size (code-golf#362)
Browse files Browse the repository at this point in the history
* 25x25 maze

* 25x25
  • Loading branch information
alemelis authored Jan 3, 2021
1 parent 37b2ada commit 98267d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hole/maze.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ const (
south = 2
west = 4
east = 8
width = 50
height = 50
width = 25
height = 25
)

var (
Expand Down

0 comments on commit 98267d8

Please sign in to comment.