Skip to content

Instantly share code, notes, and snippets.

@jmuzsik
Last active November 19, 2017 00:26
Show Gist options
  • Save jmuzsik/41ea2497034425e84616965abe08dc45 to your computer and use it in GitHub Desktop.
Save jmuzsik/41ea2497034425e84616965abe08dc45 to your computer and use it in GitHub Desktop.
func main() {
mazeData := createMaze(1000, 10000)
maze := Maze{mazeData}
clones := make([]Clone, 1000000)
for i := range clones {
clones[i] = Clone{id: i}
go clones[i].findExit(maze)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment