NodeJS module to solver word search puzzles
Allows you to solve word search puzzles by feeding it a matrix with the letters and the words to find
npm install word-search-solver
const wordSearchSolver = require('word-search-solver');
const matrix = [
[ 'c', 'i', 'o', 't' ],
[ 'a', 'o', 'a', 'h' ],
[ 'u', 'b', 'w', 'z' ],
[ 'q', 'x', 'a', 'm' ],
];
const wordsToFind = [
'bat',
'cow',
'max'
];
const solution = wordSearchSolver(matrix, wordsToFind);
The output will be:
[
{
word: 'bat',
found: true,
firstLetter: [2, 1]
lastLetter: [0, 3]
},
{
word: 'cow',
found: true,
firstLetter: [0, 0]
lastLetter: [2, 2]
},
{
word: 'max',
found: true,
firstLetter: [3, 3]
lastLetter: [3, 1]
},
]
When one of the words is not found, it is returned like this:
{
word: 'love',
found: false
}
npm test
word-search-solver is freely distributable under the terms of the MIT license.