In this exercise you will write code to solve the familiar WordSearch
puzzle. We saw one of these in the supplement
to Module 2:
n o h t y p s
m i a r y c c
l l e k s a h
r u b y v m e
e h h a l l m
p c j n i c e
r e e k b i p
Here, you see the words "ruby" and "java" appear in the puzzle.
Whereas the code shown in the Module-2 supplement only looks for
words (like "ruby" above) that read left to right horizontally,
the general WordSearch puzzle also allows:
To get started:
Things to note:
"class" found at [6,0] going diagonally right and up "else" found at [4,3] going diagonally right and down "int" found at [7,7] going diagonally right and up "return" found at [8,6] going upwards "static" found at [3,3] going diagonally right and down "void" found at [9,7] going upwards "while" found at [7,2] going left to right
Submission:
What else is due: