Skip to content

ahjmorton/mazeHS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

Simple Haskell maze solver.

Format is :

<maze width> <maze heigh> 
<starting y> <starting x>
<end y> <end x>
<maze content with walls being 1s seperated by a space>

E.g.

5 5
1 1
3 3
1 1 1 1 1
1 0 1 0 1
1 0 1 0 1
1 0 0 0 1
1 1 1 1 1

Would print
OUTPUT:
# # # # #
# S #   #
# X #   #
# X X E #
# # # # #

About

Simple Haskell maze solver

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published