Skip to main content

Questions tagged [wordle]

Questions concerning Wordle solvers or clones.

5 votes
2 answers
345 views

Wordle50 - A Command-Line Word Game

"Wordle50" is a command-line-based adaptation of the popular Wordle daily word game. In this word-guessing game, players aim to decipher a randomly selected word with lengths varying from 5 ...
Harith's user avatar
  • 9,462
4 votes
3 answers
325 views

Word-guessing game

The objective of the game is to guess a five-lettered word in five guesses or less. When the user (player) enters a word, the application will inform the user whether their guess was correct or not. ...
Brad's user avatar
  • 41
3 votes
1 answer
3k views

Wordle game in C++

I am a programmer who likes making clones of games. Having completed a version of Wordle in Python, I challenged myself with making a version of it in C++. This includes a solver as well (add a flag -...
cold10's user avatar
  • 469
2 votes
1 answer
190 views

Yet another Wordle Game

This Jupyter Notebook code for the Wordle game works. After a lot of fixes, I have it working as it should. The code is a jumbled mess. I am open to any suggestions and/or criticism of my code. I am ...
Ashish's user avatar
  • 23
5 votes
1 answer
4k views

Unwordle Solver Algorithm

rules UnWordle is a word guessing game in which it shows you a n*n color grid and a base word. The goal of the player is to fill words into the grid such that it follows these rules: a green brick ...
CodingNoomb's user avatar
5 votes
2 answers
710 views

Correct logic for string comparison in Wordle

I'm a beginner trying to make a Wordle clone in python. I already have most of it sorted out but am concerned about my code being difficult to read. The part I'm struggling with the most is the ...
Clara's user avatar
  • 53
14 votes
2 answers
3k views

Wordle Game clone

I am a beginner programmer and have recently finished coding a clone of the game Wordle. I want to know if the way I programmed this game is efficient, solid, and overall good code. I also want to ...
edwardvth's user avatar
  • 143
3 votes
1 answer
150 views

Simplify wordle logic Swift

I wrote logic for "Wordle" game but I think it's too heavy and not very readable. Is there any way to improve it? Simple wordle game with conditions: 1) Green colour - "G" if ...
ofigensky's user avatar
7 votes
1 answer
737 views

Wordle guesser, breaking out of loop by raising exception

After many years away from writing in Python, I am getting back into it. Specifically, I am trying to teach myself dataclasses. As an exercise I wrote a Wordle-solving program. I downloaded the ...
Richard D Lawson's user avatar
1 vote
0 answers
241 views

PyQt6 Wordle game... with some filtering according to the current state

Refer to Wikipedia English for more context on Wordle. This version behaves exactly like the standard Wordle game, except that it displays all possible choices in the current condition on the left ...
Ξένη Γήινος's user avatar
1 vote
0 answers
240 views

Python Wordle solver

I created a Python script that solves Wordle (more specifically this version: https://mywordle.org), it uses a wordlist of all possible answers, it is working perfectly and it rarely loses, you can ...
Ξένη Γήινος's user avatar
7 votes
3 answers
2k views

Wordle color algorithm in JavaScript

A lot of Wordle clones get the tile-coloring algorithm wrong: for example, if the word is BURNT and you guess TOAST, the colors should be ----G (not Y---G) if the word is MAXIM and you guess MAMMA, ...
Quuxplusone's user avatar
  • 19.4k
3 votes
0 answers
259 views

Command line wordle

I am seeking a review of my command line wordle game. Having only recently started exploring functional programming, I expect that there will be no shortage of areas to improve. This is my first ...
Adam Hodgson's user avatar
10 votes
4 answers
2k views

Wordle puzzle game

I am a beginner programmer with not much experience, the little I do have is with Python specifically. With all the fuss going around about the popular word game "Wordle" I wanted to ...
Erikson Thomas's user avatar
4 votes
2 answers
294 views

Wordle word match function / cheat engine

What the code does short version: Given your hints for Wordle, narrows down the list of potential matches and returns them as a list. Slightly longer version: It takes the positions and values of your ...
Candice's user avatar
  • 43

15 30 50 per page