A binary search game with zero text hints
Bisect is a visual number guessing game. It hides a target in a range from 1 to 100, and every guess splits that range on screen: the half that cannot hold the target dims out, and the surviving sliver redraws to fill the space. Nothing ever says "too high" or "too low"; you read direction from which side kept its color.
By the fourth guess most people stop doing arithmetic and start halving the range on instinct. That instinct is binary search. Bisect teaches it the way you actually build intuition, by watching a search space collapse instead of reading a rule.