Any idea whats a simple and fast way to get all words placed on a Scrabble board while the board is represented by 2D Array of chars?
Thanks in advance
|
Any idea whats a simple and fast way to get all words placed on a Scrabble board while the board is represented by 2D Array of chars? Thanks in advance
| ||||
|
feedback
|
|
This is similar to Artsiom's answer, but covers for the fact that a Scrabble board will have spaces in between words. So assuming your "2D Array of chars" looks like this:
You can do the following:
Which gives:
What we're doing is converting each row and column of characters in to strings like Using | ||||
|
feedback
|
|
Search top to bottom in each column for contiguous sets of characters then search left to right in each row for the same. Its going to be O(n^2) but I don't think you'll be able to get much better. | |||||
feedback
|
|
If i am correctly understood you than you can also try to use something like this:
| |||
|
feedback
|