Skip to content

Home

build codecov

Introduction

Beat your friends & family at wordle!

Web Solver

qordled is the companion web service. Open it in a browser, type your Wordle guesses, click tiles to set their colours (gray / yellow / green), and suggestions appear automatically.

Use the Strategy pill toggles to choose which ranking algorithms are applied. You can select any combination; selection order has no effect because strategies are chained by combining their independent results.

Web Solver Screenshot

Installation

$ brew install bzimmer/tap/qordle

CLI Examples

Suggest words using the elimination strategy after the first guess of 'brain'
$ qordle suggest -s el brAin
Auto-play with frequency, position, and bigrams strategies for 'ledge'
$ qordle play -s f -s p -s bi ledge | jq ".rounds | last"
{
  "dictionary": 1,
  "scores": [
    "rat.es",
    "moniE",
    "LEDGE"
  ],
  "words": [
    "rates",
    "monie",
    "ledge"
  ],
  "success": true
}