You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 rewritingquordle_handler()
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).
The text was updated successfully, but these errors were encountered:
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:
quordle_handler()
get_quordle_score()
function can be omitted in favor ofget_int_score()
.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).
The text was updated successfully, but these errors were encountered: