-
Notifications
You must be signed in to change notification settings - Fork 0
Description
The quordle score is currently set to be a 4-digit representation of the number of guesses used (e.g. 4568). Inspired by the form that octordle form is given, it can instead be represented as the sum of the used guesses. In the case of the example 4568, the score would then be 4+5+6+8=23. This seems like a better way of presenting overall performance in a game when recording statistics, and is also consistent with octordle, which is a very similar game in form.
The proposed changes would be:
- Use the sum of digits to reflect octordle scoring convention, by rewriting
quordle_handler() - The
get_quordle_score()function can be omitted in favor ofget_int_score(). - Update
score_converter()accordingly as well.
Following the form of octordle, a red square (words(s) that were not guessed correctly) should map to "One more than maximum possible guesses" instead of 0. In octordle's case this is 14 (you have 13 guesses in a game). This comes out to 10 for quordle, 11 for sequence (9 and 10 guesses max, respectively).