boggle-game-solver
Version:
Expansion of node-boggle-solver by adding multiple dictionary options.
18 lines (17 loc) • 442 B
JavaScript
module.exports={
dictionary: {
sowpods: 'lib/sowpods.txt',
sowpods3: 'lib/sowpods-3.txt',
sowpods38: 'lib/sowpods-3-8.txt',
sowpods310: 'lib/sowpods-3-10.txt',
popular3: 'lib/popular-3.txt',
popular38: 'lib/popular-3-8.txt',
enable3: 'lib/enable1-3.txt',
enable38: 'lib/enable1-3-8.txt',
enable310: 'lib/enable1-3-10.txt',
ospd38: 'lib/ospd-3-8.txt'
},
minSize: 3,
minWordLen: 3,
default_dictionary: "popular38"
}