University of Tennessee – Knoxville
CS202 Spring 2024 Final Project
Terminal Wordle is a command-line version of the popular game Wordle, developed for the CS202 final project. Players guess five-letter words and receive feedback via color-coded hints.
To start the game, run the following command in your terminal:
./main input/valid-wordle-words.txt input/shuffled_real_wordles.txtAfter each guess, you'll receive a hint using the following format:
g= green: correct letter, correct positiony= yellow: correct letter, wrong positionw= white: letter not in the word
Example:
Guess: c l e a r
Hint: w w g w y
Answer: t r e n d
This means:
eis in the correct position (green),ris in the word but in the wrong position (yellow),- The rest are not in the word (white).
- Type
newto start a new game - Type
helpto view the full list of instructions