LOGBOOK

HELP

Quiz Entry - updated: 2026.07.05

When a number has an odd count of digits, what do you do with the leftover digit?

Encode the lone digit with a single-digit peg (or pad with a leading zero) — don't leave it dangling.

Chunk from the left in pairs; the final odd digit becomes a one-sound peg:

  • 1234512 · 34 · 5 → tuna · mower · owl (5 = /l/).

A tuna fish, a lawn mower and an owl lined up in a row — the pegs tuna (12), mower (34) and owl (5) for 12345.

Alternatively, some people pad a leading zero so everything pairs up (505 = "soil"), but keep one rule and stick to it so you never mis-split. The leftover is a real part of the number — dropping it silently loses a digit.

From Quiz: MAJOR / Longer Numbers | Updated: Jul 05, 2026