Wordle comparison

Revision as of 15:31, 15 February 2022 by GordonCharlton (talk | contribs) (New task, with example in Quackery)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

While similar to both Bulls and cows and Mastermind, Wordle is a notable variation, having experienced a viral surge in popularity, and reverse engineering the game or creating variants has become a popular programming exercise. However, a sampling of the "code a Wordle clone" videos on YouTube shows that five of the six reviewed had a serious flaw in the way that it assigned colours to the letters of a guessed word. This aspect of the game is described here: en.wikipedia.org/wiki/Wordle#Gameplay

Wordle comparison is a draft programming task. It is not yet considered ready to be promoted as a complete task, for reasons that should be found in its talk page.
Rationale

After every guess, each letter is marked as either green, yellow or gray: green indicates that letter is correct and in the correct position, yellow means it is in the answer but not in the right position, while gray indicates it is not in the answer at all.Multiple instances of the same letter in a guess, such as the "o"s in "robot", will be colored green or yellow only if the letter also appears multiple times in the answer; otherwise, excess repeating letters will be colored gray.

Task

Create a function of procedure that takes two strings; the answer string, which and the guess string, and returns a string, list, dynamic array or other ordered sequence indicating how each letter should be marked as per the description above. (e.g. "green", "yellow", or "grey", or, equivalently, the integers 2, 1, or 0 or suchlike.)

You can assume that both the answer string and the guess string are the same length, and contain only printable characters in the ASCII/UniCode Range ! to ~ (Hex 20 to 7F) and that case is significant. (The original game only uses strings of 5 characters, all alphabetic letters, all in the same case, but this allows for most exiting variations of the game.)

Provide test data and show the output here.

The test data should include the answer string ALLOW and the guess string LOLLY, and the result should be (yellow, yellow, green, grey, grey) or equivalent.

Quackery

<lang Quackery> [ tuck witheach

     [ over i^ peek = if
        [ 2 rot i^ poke swap
          0 swap i^ poke ] ]
   witheach 
     [ over find 
       2dup swap found iff 
         [ 1 unrot poke ] 
       else drop ]
   [] swap witheach 
     [ dup 3 < * join ] ]    is wordle-compare ( $ $ --> [ ) 

 $ "ALLOW" $ "LOLLY" wordle-compare echo cr 
 $ "ROBIN" $ "ALERT" wordle-compare echo cr
 $ "ROBIN" $ "SONIC" wordle-compare echo cr
 $ "ROBIN" $ "ROBIN" wordle-compare echo cr

</lang>

Output:

2 is equivalent to green, 1 is equivalent to yellow, 1 is equivalent to grey

[ 1 1 2 0 0 ]
[ 0 0 0 1 0 ]
[ 0 2 1 2 0 ]
[ 2 2 2 2 2 ]