Merge branch 'master' of github.com:abhin4v/russel-norvig-ai-problems
This commit is contained in:
commit
86924ea7cf
|
@ -1,7 +1,8 @@
|
|||
module SlidingPuzzle where
|
||||
-- Solves the sliding puzzle problem (http://en.wikipedia.org/wiki/Sliding_puzzle)
|
||||
-- using A* algorithm
|
||||
|
||||
module SlidingPuzzle where
|
||||
|
||||
import Data.Ix
|
||||
import qualified Data.Array as A
|
||||
import Data.Array (Array, array, (//), (!))
|
||||
|
|
Loading…
Reference in New Issue