A weekly run through katas—readable solutions, edge-case notes, and refactoring experiments.
void _if(bool value, void (*func1)(), void (*func2)())
{
return ? func1() : func2();
}
// Clean & Readable
Patterns, complexity analysis, and clean implementations—one problem at a time.
We break down algorithms, systems, and experiments—clear explanations, no shortcuts.
Browse TopicsNew videos weekly. No fluff—just code, diagrams, and notes.