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

Returns: List<String> (List | String) - word list

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

DailyWordGuess.timeRemaining()

The amount of time in hours:minutes:seconds remaining to attempt the current day’s puzzle

Returns: String (String) - Amount of time remaining

DailyWordGuess.triesRemaining()

The number (out of six) of attempts at the daily puzzle remaining

Returns: Number (Number) - Number of attempts remaining