Topic · Interview, Career & Industry
← All topicsSequence & Pattern Puzzles
13 articles · 3 checkpoints · 6 deeper reads · 4 reference notes
Every article, in reading order
plant a flag as you finish eachRead these first
'What's the next number in 2, 6, 12, 20, 30, ...?' is really asking whether you have a checklist for sequence puzzles. Differences, ratios, and known sequence families cover almost everything you'll be handed.
Most 'count the ways to...' interview puzzles are recurrences wearing a costume. The skill is translating a story into an equation that relates the answer for n to the answer for smaller n, after that, it's mechanical.
A generating function packs an entire infinite sequence into one polynomial-like expression, where the coefficient of x^n is the n-th answer. Counting problems that look hard as combinatorics often become easy algebra once repackaged this way.
Then the rest