Jev example · Party games

The secret sorting club

Infer which of three candidate rules fits the admissions list.

Fun & gameschoice

State

This is the context Jev receives before answering the typed question.

{
  "admitted": [
    "moon",
    "book",
    "tree"
  ],
  "rejected": [
    "cat",
    "dog",
    "sun"
  ]
}

Typed questions (1)

Your answer

choice

Which candidate rule fits every admitted and rejected word? Consider only these candidate rules.

Try in Playground
  • double_letter | Admit words with a repeated adjacent letter.
  • starts_b | Admit words that start with b.
  • three_letters | Admit exactly three-letter words.
  • none | None of these rules fits

Try changing the scenario

Add 'letter' to the admitted list or 'apple' to the rejected list and re-evaluate.

Catalog source: TypeSafeAI/typesafe-playground, reused under MIT. This is an independent community catalog, not an official TypeSafe AI product.