Back to writing

Before solving more problems, build complexity intuition first

Complexity intuition is the ability to look at an idea and quickly ask:

Complexity intuition is the ability to look at an idea and quickly ask:

  • how many times am I scanning the data
  • where is repeated work hiding
  • which step breaks first when input size grows

This matters because many bad directions can be ruled out before implementation even starts.