i need to make a program which reads from a file which has a word list. i then need to input more than 3 letters, and less than 8, and then see how many words which are present in the wordlist can be made from those particular letters and then output those words.
any help will be apppreciated
thanks a lot
tyler
I read the words into a map of type <string, string>. Then using nested for-loops I found all the combinations that the letters can make and using the map I checked if they exist in there.