This Challenge is to verify a Criss-Cross matrix has no invalid words,contains all of the word set, and all are simply connected (Up/Down/Left/Right). Separation, UDLR, must exist between non-intersecting words. Diagonal is considered separate.
The word set is a cell array. The matrix is an array of Char with spaces being represented by '`', char(96), which is under the tilde on my keyboard.
Example:
Input:
dict={'abcd' 'cag'}
Achar=['abcd'
'``a`'
'``g`'];
Output: Validity (1 for Valid, 0 for Invalid)
Related Challenges:
This Challenge is derived from GAMES August 2013 Contest "On the Ice" to fit all NHL Team names into a minimum area grid using the Criss-Cross rules. Current Best solution is 19x19, 6/3/2013. Contest ends 8/31/2013.
1) Create an NHL Criss-Cross (Score by Area)
2) Complete a Criss-Cross
3) Create a Criss-Cross dictionary from a matrix
Solution Stats
Solution Comments
Show commentsProblem Recent Solvers7
Suggested Problems
-
Find the longest sequence of 1's in a binary sequence.
6815 Solvers
-
576 Solvers
-
788 Solvers
-
Count letters occurence in text, specific to words with a given length.
203 Solvers
-
How Many Months Until It's Today Again?
134 Solvers
More from this Author306
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!