Rotting Oranges
In a grid, cells contain 0 (empty), 1 (fresh orange), or 2 (rotten orange). Each minute, any fresh orange adjacent (4-directionally) to a rotten one becomes rotten. Return the minimum number of minutes until no fresh oranges remain, or -1 if it's impossible.
This is a premium problem.
Unlock Rotting Oranges with both full courses, DSA and System Design, and every other premium problem.
Problem
You are given an m x n grid where each cell can have one of three values: 0 (empty cell), 1 (fresh orange), or 2 (rotten orange). Every minute, any fresh orange that is 4-directionally adjacent to a rotten orange becomes rotten. Return the minimum number of minutes that must elapse until no cell has a fresh orange. If this is impossible, return -1.
Input
A 2D integer grid with values 0, 1, or 2.
Output
Minimum minutes to rot all oranges, or `-1` if impossible.
Examples
Input: grid = [[2,1,1],[1,1,0],[0,1,1]]
Output: 4
Input: grid = [[2,1,1],[0,1,1],[1,0,1]]
Output: -1
The orange at (2,0) can never be reached.
Input: grid = [[0,2]]
Output: 0
No fresh oranges to begin with.
The brute-force approach
Each minute, scan the entire grid and mark any fresh orange adjacent to a rotten one as newly rotten. Repeat until no changes happen. Count the minutes.
minutes = 0
while grid has fresh oranges:
changed = False
new_rotten = []
for each cell (r,c) that is fresh:
if any neighbor is rotten:
new_rotten.append((r,c))
changed = True
for (r,c) in new_rotten:
grid[r][c] = 2
minutes += 1
if not changed and grid has fresh: return -1
return minutesO((m×n)²) — each minute does a full O(m×n) scan, and this can repeat O(m×n) times.
Spotting the pattern
This is a Matrix Traversal problem. The key question to ask yourself:
If multiple rotten oranges exist from the start, which minute does each fresh orange rot? Can you compute all minutes in a single BFS pass?
Answering that is where it clicks, and it's exactly what the guided walkthrough below builds with you: the pattern reasoning, a progressive hint ladder that never spoils the answer, a row-by-row dry run, the optimized solution, and an in-browser editor to run your code against real test cases.
Unlock the full guided solution
The Matrix Traversal walkthrough for Rotting Oranges: the progressive hint ladder, a row-by-row dry run, the optimized code, and an in-browser runner, plus both full courses, DSA and System Design, and every other premium problem.
Already finished Big-O and Hash Maps free? This picks up right where the path leads: same format, harder patterns, the ones that show up in every FAANG-style screen.
What you get
- ✓The full DSA course: concept lessons, drills, graded tests, and cold-read capstones for every pattern
- ✓The full System Design course: 20 building-block units for the design round, included at no extra cost
- ✓Stop going blank on algorithm problems. The hint ladder walks you to the answer without spoiling it.
- ✓Actually internalize the trace: dry runs walk state row by row so it clicks before you write a line
- ✓Know when to reach for each pattern. Every problem names the trigger so you spot it next time.
- ✓Write and run JS or Python in the browser with real test cases on every problem
- ✓Access every new problem, unit, and pattern guide as they ship weekly
“This app finally made it click. I tried NeetCode, CTCI, and YouTube for years and still couldn't solve Two Sum. The beginner mental models for the patterns are genuinely so helpful. THANK YOU.”
Full access
$49 / year
or $9 / month
Now includes a C++ runner alongside JavaScript and Python.
LeetCode Premium is $159/year and doesn't teach you anything.
Less than one Udemy course, with guided problems instead of passive lectures.
One extra month of job searching costs more than a full year here.
- ✓Both courses, every unit: DSA + System Design
- ✓All 150 problems across 33 patterns, plus every new one
- ✓New problems and units weekly
- ✓Cancel anytime
Cancel anytime. Not useful within 7 days? Email for a full refund. Secured by Stripe.