C++ coding assignment for Imperial EEE first-year spring term.
Create a Wordle Assistant class that can help solve Wordle puzzles.
- List down available letters for each letter position in the word.
- Show which letters and how many of them need to be in the word.
- Check if the next solution attempt is compatible with the information we have.
- Solution with repeating letters can be complicated to interpret.
- Avoid code repetition and ensure const correctness.
- Generating edge-case examples to ensure code runs correctly for any situation.