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
choiceWhich 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.