Leetcode 733. Flood Fill - Python

Published: 01 September 2021
on channel: HelmyCodeCamp
6,181
60

An image is represented by an m x n integer grid image where image[i][j] represents the pixel value of the image.

You are also given three integers sr, sc, and newColor. You should perform a flood fill on the image starting from the pixel image[sr][sc].

To perform a flood fill, consider the starting pixel, plus any pixels connected 4-directionally to the starting pixel of the same color as the starting pixel, plus any pixels connected 4-directionally to those pixels (also with the same color), and so on. Replace the color of all of the aforementioned pixels with newColor.

Return the modified image after performing the flood fill.

Connect with me on Linkedin!   / helmy47  


Watch video Leetcode 733. Flood Fill - Python online without registration, duration hours minute second in high quality. This video was added by user HelmyCodeCamp 01 September 2021, don't forget to share it with your friends and acquaintances, it has been viewed on our site 6,181 once and liked it 60 people.