This question evaluates a candidate's skills in algorithm design, constraint propagation, candidate-set pruning, and strategy selection for a Wordle-style solver within the Coding & Algorithms domain.
Implement a program to solve a Wordle-style word guessing game. The game has a hidden target word of fixed length L (e.g., 5) drawn from a known dictionary. After each guess, you receive per-character feedback: Correct (right letter, right position), Present (letter exists but different position), or Absent (letter not in the word). Requirements: (