Limited Time Offer:Up to 0% off Hello Interview Premium
Up to 0% off Hello Interview Premium 🎉
Hello Interview
Learn Code
Introduction
Overview
Container With Most Water
Two Sum (Sorted Array)
3-Sum
Triangle Numbers
Move Zeroes
Sort Colors
Trapping Rain Water
Overview
Maximum Sum of Subarrays of Size K
Max Points You Can Obtain From Cards
Max Sum of Distinct Subarrays Length k
Overview
Longest Substring Without Repeating Characters
Longest Repeating Character Replacement
Overview
Can Attend Meetings
Insert Interval
Non-Overlapping Intervals
Merge Intervals
Employee Free Time
Overview
Valid Parentheses
Decode String
Longest Valid Parentheses
Monotonic Stack
Daily Temperatures
Largest Rectangle in Histogram
Overview
Linked List Cycle
Palindrome Linked List
Remove Nth Node From End of List
Reorder List
Swap Nodes in Pairs
Overview
Apple Harvest (Koko Eating Bananas)
Search in Rotated Sorted Array
Split Array Largest Sum
Kth Smallest Element in a Sorted Matrix
Minimum Shipping Capacity
Overview
Kth Largest Element in an Array
K Closest Points to Origin
Find K Closest Elements
Merge K Sorted Lists
Median from Data Stream
Introduction
Fundamentals
Return Values
Maximum Depth of Binary Tree
Path Sum
Passing Values Down and Helper Functions
Validate Binary Search Tree
Calculate Tilt
Diameter of a Binary Tree
Path Sum II
Longest Univalue Path
Graphs Overview
Adjacency List
Copy Graph
Graph Valid Tree
Matrices
Flood Fill
Number of Islands
Surrounded Regions
Pacific Atlantic Water Flow
Introduction
Overview
Level Order Sum
Rightmost Node
Zigzag Level Order
Maximum Width of Binary Tree
Graphs Overview
Minimum Knight Moves
Rotting Oranges
01-Matrix
Bus Routes
Overview
Word Search
Solution Space Trees
Subsets
Generate Parentheses
Combination Sum
Palindrome Partitioning
N-Queens
Overview
Course Schedule
Course Schedule II
Shortest Path Algorithms
Network Delay Time
Cheapest Flights Within K Stops
Path With Minimum Effort
Find City with Fewest Reachable
Fundamentals
Solving a Question with Dynamic Programming
Counting Bits
Decode Ways
Unique Paths
Maximal Square
Longest Increasing Subsequence
Word Break
Maximum Profit in Job Scheduling
Paint House
Paint House II
Minimum Window Subsequence
Overview
Best Time to Buy and Sell Stock
Gas Station
Jump Game
Jump Game II
Partition Labels
Overview
Implement Trie Methods
Prefix Matching
Overview
Count Vowels in Substrings
Subarray Sum Equals K
Spiral Matrix
Rotate Image
Set Matrix Zeroes
Vote For New Content
Pricing
Sign in / Sign up
Search
⌘K
Pricing

Tutor

Depth-First Search

Flood Fill

easy

max (21)341224132;341225102;21365487109
Count: 10
abcValid triangle requires:a + b > c AND a + c > b AND b + c > a(every pair must sum to more than the third side)3511SOURCE23211SOURCE23UNREACHABLE$100$100$100$5000SRC123DST$100$100$1000SRC123DST01233141Threshold: 4Answer: 32 reachable01234231118Threshold: 2Answer: 01 reachable1102233321432263321
DESCRIPTION (inspired by Leetcode.com)

Given a m x n integer grid image and integers sr, sc, and newColor, write a function to perform a flood fill on the image starting from the pixel image[sr][sc].

In a 'flood fill', start by changing the color of image[sr][sc] to newColor. Then, change the color of all pixels connected to image[sr][sc] from either the top, bottom, left or right that have the same color as image[sr][sc], along with all the connected pixels of those pixels, and so on.

Input:

image = [[1,0,1],[1,0,0],[0,0,1]], sr = 1, sc = 1, color = 2

Output:

[[1,2,1],[1,2,2],[2,2,1]]

The zeroes connected to the starting pixel (1, 1) are colored with the new color (2).

Explanation

This solution uses depth-first search to traverse the grid and perform the flood fill by defining a recursive function dfs that takes in the current row and column of the pixel being explored. Each call to dfs will either change the color of the pixel if the pixel is the same color as the starting pixel, and then recursively call dfs on its connected pixels. If the pixel is not the same color as the starting pixel, the function will return without doing anything.
The algorithm starts at the given starting pixel and uses depth-first search to explore all pixels connected 4-directionally to it. At each pixel, it first checks to see if the pixel is the same color as the starting pixel. If it is, it changes the color of the pixel and continues to explore the connected pixels.
Visualization
Python
Language
def flood_fill(image, sr, sc, color):
rows, cols = len(image), len(image[0])
original_color = image[sr][sc]
if original_color == color:
return image
def dfs(r, c):
if image[r][c] == original_color:
image[r][c] = color
if r >= 1: dfs(r - 1, c)
if r + 1 < rows: dfs(r + 1, c)
if c >= 1: dfs(r, c - 1)
if c + 1 < cols: dfs(r, c + 1)
return
dfs(sr, sc)
return image
def dfs(r, c):
if image[r][c] == original_color:
image[r][c] = color
if r >= 1: dfs(r - 1, c)
if r + 1 < rows: dfs(r + 1, c)
if c >= 1: dfs(r, c - 1)
if c + 1 < cols: dfs(r, c + 1)
return
101120001r = 1c = 1color: 2original_color: 0

update color

0 / 2

Setting the color of connected pixels.
After changing that pixel's color, the algorithm will continue to explore the connected pixels of that pixel. Whenever it encounters a pixel that is not the same color as the starting pixel, it will return immediately and backtrack to the previous pixel on the call stack, which will then continue to explore its remaining connected pixels.
Visualization
Python
Language
def flood_fill(image, sr, sc, color):
rows, cols = len(image), len(image[0])
original_color = image[sr][sc]
if original_color == color:
return image
def dfs(r, c):
if image[r][c] == original_color:
image[r][c] = color
if r >= 1: dfs(r - 1, c)
if r + 1 < rows: dfs(r + 1, c)
if c >= 1: dfs(r, c - 1)
if c + 1 < cols: dfs(r, c + 1)
return
dfs(sr, sc)
return image
def dfs(r, c):
if image[r][c] == original_color:
image[r][c] = color
if r >= 1: dfs(r - 1, c)
if r + 1 < rows: dfs(r + 1, c)
if c >= 1: dfs(r, c - 1)
if c + 1 < cols: dfs(r, c + 1)
return
def dfs(r, c):
if image[r][c] == original_color:
image[r][c] = color
if r >= 1: dfs(r - 1, c)
if r + 1 < rows: dfs(r + 1, c)
if c >= 1: dfs(r, c - 1)
if c + 1 < cols: dfs(r, c + 1)
return
def dfs(r, c):
if image[r][c] == original_color:
image[r][c] = color
if r >= 1: dfs(r - 1, c)
if r + 1 < rows: dfs(r + 1, c)
if c >= 1: dfs(r, c - 1)
if c + 1 < cols: dfs(r, c + 1)
return
121120001r = 1c = 1color: 2original_color: 0

recursive call

0 / 6

Backtracking to the previous pixel
The algorithm will continue to explore the connected pixels of the starting pixel until it has explored all connected pixels of the start pixel.

Animated Solution

Visualization
Python
Language
Try these examples:
def flood_fill(image, sr, sc, color):
rows, cols = len(image), len(image[0])
original_color = image[sr][sc]
if original_color == color:
return image
def dfs(r, c):
if image[r][c] == original_color:
image[r][c] = color
if r >= 1: dfs(r - 1, c)
if r + 1 < rows: dfs(r + 1, c)
if c >= 1: dfs(r, c - 1)
if c + 1 < cols: dfs(r, c + 1)
return
dfs(sr, sc)
return image
101100001color: 2

flood fill

0 / 39

Complexity Analysis

For this problem, let m be the number of rows and n be the number of columns in the grid.
Test Your Knowledge

Login to take the complexity quiz and track your progress

Complexity Analysis

Time Complexity: O(m * n) In the worst case, every pixel in the grid has the same color as the starting pixel, so the DFS visits all m * n cells exactly once.

Space Complexity: O(m * n) In the worst case, the DFS recursion stack can grow up to m * n deep when all pixels share the same color and the recursion path snakes through the entire grid.

Mark as read

Next: Number of Islands

Your account is free and you can post anonymously if you choose.

Unlock Premium Coding Content

Interactive algorithm visualizations
Guided Practice
Recent interview questions
Learn More
Reading Progress

On This Page

Explanation

Animated Solution

Complexity Analysis

Questions
Meta SWE Interview QuestionsAmazon SWE Interview QuestionsGoogle SWE Interview QuestionsOpenAI SWE Interview QuestionsAnthropic SWE Interview QuestionsEngineering Manager (EM) Interview Questions
Learn
Learn System DesignLearn DSALearn BehavioralLearn ML System DesignLearn Low Level DesignGuided Practice
Links
FAQPricingGift PremiumHello Interview Premium
Legal
Terms and ConditionsPrivacy PolicySecurity
Contact
About UsProduct Support

7511 Greenwood Ave North Unit #4238 Seattle WA 98103


© 2026 Optick Labs Inc. All rights reserved.

Login to track your progress