For class we have to create a code which will take a user inputted
string of letters and check if there are anagrams of that string in a
word list.
My code so far compiles but has two running errors which I've seen so far
1. It will only check every odd word (1st, 3rd, 5th...). If I try to enter an even word it gives me this error: java.util.NoSuchElementException: No line found
2. When it does check, it returns the next word on the list (an even number word).
I think the problem is within the while loop but I can't figure it out.
Thank you in advance
Here's the code: