Press New game to draw a hidden rule.
Your hand β pick a card to test
Describe your rule guess in plain English:
Rule guess as Python (free, checked every turn):
π Rule-guess cheatsheet
Write a Python expression (or multi-line body with return) over:
card.rank (A=1 β¦ K=13) Β· card.suit ('hearts' 'diamonds' 'clubs' 'spades') Β·
card.color ('red' 'black') Β· card.is_face
mainline β the accepted cards so far, oldestβnewest.
Examples: card.rank % 2 == 0 Β· card.suit == "spades" Β·
not mainline or card.color != mainline[-1].color
Guesses are judged by behavioral equivalence (same accepts/rejects on every probe board) β
the exact check the model faced.
π€ The model's game
Same rule, same deal (starter, hand, draw order). Careful: revealing may spoil the rule.