DSA Visualized
← All topics
data_array

Arrays

The row of boxes everything is built on.

01

Arrays & Memory

The row of numbered boxes that everything else is built on.

play_circle
02

2D Arrays

The grid is a fiction. Memory is one flat line — and that's why row-major is fast.

play_circle
03

Two Pointers

Two markers moving toward each other turn an O(n²) search into O(n).

play_circle
04

Sliding Window

Reuse the last answer instead of recomputing — a window that slides, not restarts.

play_circle