Starting from:

$25

CSE102 - Computer Programming with C  - Assignment 7  - Word Puzzle - Solved

A word puzzle is a word game that consists of the letters of words placed in a grid, which usually has a rectangular or square shape. The objective of this puzzle is to find and mark all the words hidden inside the box. The words may be placed horizontally, vertically, or diagonally. Many word search puzzles have a theme related to all the hidden words, such as food, animals, or colors. 

 

  

7x7 Example board 
Example Founded Words: 

Meal [0,0] -> [0,3] 

Scene [4,4] -> [4,0] 

Row [3,2] - > [1,1] 

 
 

Part 1 (Board Build Part): Build a 15x15 board randomly chosen from given “wordlist.txt” file. You need to take random 7 words. The words may be placed horizontally, vertically, or diagonally (8 directions). It should be changed each run. Fill the gaps with random characters.

 

Part 2 (Game Part):    

•       The player should enter the first coordinates of a word and word that the player found.  

  

•       If a word is founded in this coordinate, you need to replace the word with X and give 2 points to the user. If the word is not founded, you need to give a warning message like “Wrong choice! You have only 2 lefts.” The player can only make three mistakes.

  

•       The player can terminate the game by writing the ":q" command, three mistakes, or finding all the words. If the game is terminated, you need to write the total points that the player got. 

 

•       A common strategy for finding all the words is to go through the puzzle left to right (or right to left) and look for the word's first letter. After finding the letter, one should look at the eight surrounding letters to see whether the following letter of the word is there. One can then continue this method until the entire word is found.

More products