Skip to content

kevinchtsang/wordle_assist

Repository files navigation

Wordle Assistant

Tool to help your Wordle games. Type in your word attempts and change the colours to match (grey - no match, yellow - in word, green - correct position) by clicking on the tiles.

You can use this app on your browser by clicking here.

You can also use this app locally by running the following in R.

shiny::runGitHub("wordle_assist", "kevinchtsang")

Example

Word of Caution

The tool has been build with the Scrabble dictionary available via the words package, which may not match exactly to the Wordle dictionary you are playing with.

Getting Started with R

If you don't already have R installed on your computer, you can download RStudio (an IDE for R) for free here.

Then in the Console, you can run the following code to run the app.

install.packages("shiny")
shiny::runGitHub("wordle_assist", "kevinchtsang")

It will take a while for all the packages to be downloaded.