/Search.js

Word search solver in JavaScript

Primary LanguageJavaScript

#Search.js

This project is split into two parts: A library and a website.

##Library ####Sample Usage:

var puzzle = [...] // List of strings, each string representing one row
var words = [...]   // List of words to find

var solutions = new Puzzle(puzzle).solve(words)