logoalt Hacker News

Binary Wordle

245 pointsby eh8last Wednesday at 2:57 AM125 commentsview on HN

Comments

igiturlast Wednesday at 4:09 PM

I'm waiting for the NY Times to sue this one too.[1]

[1] https://apnews.com/article/new-york-times-wordle-clones-take...

tylerchrlast Wednesday at 7:58 AM

My wife took one look at this and said “It’s not Wordle if it’s all binary—it’s Digitle.”

show 2 replies
AmsterErdolast Wednesday at 10:36 AM

I think I don't get it... since it's binary, it can always be guessed in two attempts?

show 5 replies
umvilast Wednesday at 6:53 AM

Binary is too easy, but hex can be tricky. I made a hex-based wordle puzzle for my programming game where you have to guess an 8-digit hex string in as few as 6-12 guesses using wordle mechanics... called the level "dwordle" :)

(video from like 3 years ago: https://www.reddit.com/r/Unity2D/comments/sq4anb/i_added_a_w...)

Aissenlast Wednesday at 6:59 AM

I love that someone went all the way to write and publish this joke. Keep hacking!

zcklast Wednesday at 8:28 PM

I also made some number-based wordle-variants, which I call "numberdle". I found that it was hard to come up with good ways of guessing because wordle has the restriction that most combinations are invalid. You won't ever have to guess xwqqf, because that's not an English word. And more importantly, guessing some letters gives you information about the other letters. If you find out three letters, and have the target as _a_ts, you can use that to figure out the other two letters.

But if you need to guess a number, and you know it's _5_34, having three correct digits don't help you figure it out.

So I made some variants where guessed values do help you figure out the correct answer.

In rationerdle (https://zck.org/numberdle/?variant=rationerdle), you have to guess a rational number x/y, where both x and y are between 1 and 99, inclusive. It displays the rational number you actually guessed, and whether x and y separately are too high or too low.

In factordle (https://zck.org/numberdle/?variant=factordle), the player has to guess the factors of a target number.

In formuladle (https://zck.org/numberdle/?variant=formuladle), there is a graphed straight line, and the player has to guess the mx+b formula that graphs that line.

I would like to make more, but didn't have any other great ideas when I ran out of interest.

asimovDevlast Wednesday at 6:57 AM

https://horsle.glitch.me reminds me of this

show 1 reply
patrakovlast Wednesday at 3:57 AM

Step 1: Guess 00000.

Step 2: Replace all grey cells with 1s.

show 9 replies
NotAnOtterlast Wednesday at 5:50 PM

This delivers on the title but I wonder if you could tweak it to make it an actual game without wildly overcomplicating it.

Maybe make the string much longer, like 10 bits, and the game only matches on substrings longer than 3. 000...000 would generally return no matches.

That's still probably solvable with superpermutations but wordle is "solvable" with a dictionary, so don't let perfect be the enemy of "better than 2 guess bordle"

abotsislast Wednesday at 6:25 AM

Yea, it’s too easy. Maybe if it were a “guess the number” but in binary? Hints are just “too high” or “too low”?

…though now that I’m playing it in my head that’s too easy too. (Start at MSB and shift right if too high and add bits if too low)…

Maybe if you reduced the number of guesses to 5 that’d add enough chance to make it fun?

show 1 reply
NoSaltlast Wednesday at 3:28 PM

I did it in two attempts ... read it and weep, suckas!

show 1 reply
James-Liveseylast Wednesday at 11:12 AM

If anyone's in need of a hexadecimal version... https://jamesl.me/hexle/

I similarly made a binary one before this version, but unsurprisingly, a lot of people said they found it too easy!

show 1 reply
bitwranglerlast Wednesday at 4:14 PM

I like the UI and cute idea, nice animation. great way to learn xor $FF haha.

lazermanlast Wednesday at 2:49 PM

The number of guesses should be written in binary too!

thehourslast Wednesday at 4:11 AM

Feedback: I'm unable to input with keyboard after typing anything but '0' until a full refresh (and selecting the input area with mouse).

show 1 reply
NooneAtAll3last Wednesday at 8:05 PM

recently I encountered a game that had "wordle, but with numbers" as one of its puzzles

https://semenar.itch.io/lost-in-space

mulmenlast Wednesday at 5:14 AM

Got it in 10.

show 2 replies
sonecalast Wednesday at 8:44 AM

I guessed my first game in the first attempt! (10011)

show 3 replies
nickburlettlast Wednesday at 6:01 AM

Feature request: a "share" button, à la base-26 Wordle.

clockerlast Wednesday at 2:34 PM

Nice game. I got the answer in 1 try in my first attempt!

https://imgur.com/a/W4OjObH

show 2 replies
meindnochlast Wednesday at 4:29 PM

It's not wordle. It's bytle.

show 1 reply
dhsysusbsjsilast Wednesday at 5:01 AM

I guessed 00000 and won first go!

show 2 replies
seabasslast Wednesday at 5:21 PM

I love that not only are the inputs binary, but so are the results.

drdeclast Wednesday at 5:08 PM

With this game, there is no try. There is do or do not.

kyleclast Wednesday at 5:02 AM

Got it in one on my second game! Felt pretty good till I realized that's like 1/32 chance.

show 1 reply
b0a04gllast Wednesday at 7:29 PM

bitmask bruteforce took 5 ops max.solving fizzbuzz with a GPU.

citizenfishylast Wednesday at 7:54 AM

Isn't this just Mastermind?

show 3 replies
sarmadgulzarlast Wednesday at 9:59 AM

So, this can be solved in at least one and at most two attempts.

lo_zamoyskilast Wednesday at 3:07 PM

Why 5 rows? Just have two.

celticninjalast Wednesday at 9:13 AM

Isn't it always possible to get this on guess 2?

show 1 reply
neuroelectronlast Wednesday at 4:41 AM

I see what you did there

kcaseglast Wednesday at 5:13 AM

Bit masking : the game

sidcoollast Wednesday at 5:53 AM

It should be solvable in no more than 2 moves.

show 1 reply
HenryBemislast Wednesday at 3:29 PM

So....

1st line, all zeros. It shows me where the zeros are.

Well.. that's it. Any non-zero is a 1.

So.. finished on the second line.

Am I the only one?

show 2 replies
itishappylast Wednesday at 4:20 AM

Is it possible to get yellow cells?

show 2 replies
october8140last Wednesday at 9:41 AM

Got it. Second try.

nicwolfflast Wednesday at 6:11 PM

I, uh, got it in two. Is it creepy that the answer is my ZIP code?

alloysmilalast Wednesday at 11:29 AM

only two attempts are ever needed :-(

schindlabualast Wednesday at 6:13 AM

Hilariously dumb

show 1 reply
odo1242last Wednesday at 5:01 AM

I somehow got lucky and guessed the answer in just one try lol

show 1 reply