DailyWordGuess
A Wordle-like word guessing game with a single daily word for all users.
RPCS
- DailyWordGuess.getWordList()
Get a list of all the possible words
- DailyWordGuess.giveUp()
Give up on the current game and learn the target word
Returns:
String
(String) - Target word of daily game
- DailyWordGuess.guess(word: BoundedString<5, 5>)
Guess the word. Returns a list where each item is the feedback for the corresponding character. Feedback is a “3” if the character is correct, “2” if it is correct but in the wrong place, and “1” if the letter is not present in the word.
Arguments:
word: BoundedString<5, 5>
(BoundedString) - Guess for this round