Pixel Path
Walk from green to orange. Black is wall, gray is path. Arrows or swipe.
Moves
0
Best
?
Best
∞
⌨️ Arrow keys / 📱 Swipe
How to play
Each round generates a fresh maze. Green square is you, orange is the target. Arrow keys (or swipe on mobile) to move. Black = wall, gray = path.
"Best" shows the optimal step count (computed in real time via BFS). Goal: reach the target in as few steps as possible.
About maze generation
Uses the classic "recursive backtracker" algorithm — a foundational graphics algorithm. Every new game is different, but always connected (start can reach goal) and acyclic (single path between any two points).
Originality
Maze exploration is public-domain. The generation, visuals, and interaction are BverGame original.