I want to recreate a crossword grid using only the answers. As a test I am using answers from a known grid (15x15 blocked crossword).
I input the answers, but the created grid does not match the known grid and is too big.
I have set:
var rows = 15; and
var table = generateTable(blankTable, rows, cols, words, [0, 0, 0, 0]);
in
function generateSimpleTable(words)
which makes a better match, but not identical.
What else do I need to change to make this work?
Thank you.
I want to recreate a crossword grid using only the answers. As a test I am using answers from a known grid (15x15 blocked crossword).
I input the answers, but the created grid does not match the known grid and is too big.
I have set:
var rows = 15;andvar table = generateTable(blankTable, rows, cols, words, [0, 0, 0, 0]);in
function generateSimpleTable(words)which makes a better match, but not identical.
What else do I need to change to make this work?
Thank you.