Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

manipulating strings and cell arrays

2 views (last 30 days)
James Connor
James Connor on 8 Nov 2015
Closed: MATLAB Answer Bot on 20 Aug 2021
I'm trying to create a simplified hangman game I'm just having trouble with this part of the code.
word_needed_to_be_guessed='sharper'
Dictionary=
'shape'
'shorten'
'sharper'
'sharpening'
'sit'
'operate'
'kind'
I want to write some sort of for loop that considers the position of the guessed letters and if they are in the Dictionary words. For example say my first guess is s (considering the correct word for the hangman is 'sharper') get rid of 'operate' and 'kind' because they s is correct only for the first letter of the dictionary words. Say my second guess was h. This would keep all the dictionary words because they have the letter h as their second letter. Now if my third guess was p it would get rid of shorten because its not correct for the 5th letter of the word. Now if my final guess was say a r it would get rid of the shape and sharpening because it is not true for the 7th position of the word. This would just leave Dictionary ='sharper' I hope this made sense and help would be appreciated.
  1 Comment
Jan
Jan on 8 Nov 2015
Edited: Jan on 8 Nov 2015
What have you tried so far? Is this a homework question? If so, how can we help you beside posting a solution?

Answers (0)

This question is closed.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!