Given an `image` grid, a start pixel `(sr, sc)`, and a `newColor`, implement `floodFill(image, sr, sc, newColor)` that fills the connected region of the start pixel's color with `newColor`. Return the image.
+ 1 hidden test run on Submit.
Recursive flood fill repaints the connected region in O(rows * cols) time.
Run your code to see results.