01 // PROJECT AT A GLANCE
DUO STUMPER 1
COne day, one pair, a subject discovered on the spot: generating an ASCII fractal.
The stumper is a timed exam where the subject is only revealed at the start of the day. This one asks you to build a fractal — a figure that repeats identically at every scale — from a base pattern supplied at launch, and a number of iterations.
A self-similar fractal generator: the program receives an iteration count then two base patterns made only of '#', '.' and '@' — the last one separating the lines — and replicates the pattern recursively over a grid whose side grows as a power at each iteration.
PRIMARYC
DELIVERY2-PERSON TEAM
VERIFICATIONCriterion
SOURCEINSPECTOR READY
03 // KEY OUTCOMES
- Designing and delivering a fractal generator in a single afternoon
- Configurable and strictly validated pattern: two patterns of the same length, aligned '@', alphabet limited to '#', '.' and '@'
BEYOND THE BRIEF
- Criterion tests despite the timed format of the exam
04 // SOURCE TREE
READING SOURCE…