15 puzzle solver: Difference between revisions

Content added Content deleted
m (Small coding improvements.)
m (→‎{{header|Wren}}: Minor tidy)
Line 10,562: Line 10,562:
{{libheader|Wren-long}}
{{libheader|Wren-long}}
This works but is very slow (132 seconds).
This works but is very slow (132 seconds).
<syntaxhighlight lang="ecmascript">import "/long" for ULong
<syntaxhighlight lang="wren">import "./long" for ULong


var Nr = [3, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3]
var Nr = [3, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3]