Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 601 Bytes

File metadata and controls

13 lines (11 loc) · 601 Bytes

cpp-spring-assignment

C++ coding assignment for Imperial EEE first-year spring term.

Objective

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.

Challenges

  • 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.