Solvequill Blog · coding · 4 min read · 2 views

Big-O makes sense when you imagine the input growing

A beginner-friendly way to compare algorithms without memorizing names.

Published:

Big-O is not about timing one run on your laptop. It is about how work grows when the input grows.

The main idea

Ask what happens when the input size doubles. Does the work double, quadruple, or barely change?

A short example

A single loop over `n` items grows roughly linearly; a nested loop over the same list often grows quadratically.

Check while you solve

  • Name the input size.
  • Count repeated work, not syntax lines.
  • Ignore constants only after you understand the main growth.

Turn your own question into an explanation video

Type the question or upload a photo; Solvequill produces a narrated video that walks through the solution step by step.

Open Solvequill

Keep reading