Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use leetcode to realize Color filling in golang

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article will explain in detail how to use leetcode to achieve color filling in golang, the content of the article is of high quality, so the editor will share it with you for reference. I hope you will have a certain understanding of the relevant knowledge after reading this article.

Color fill. Write a function to achieve the "color fill" function supported by many image editing software. Given a screen (represented as a two-dimensional array with elements as color values), a point, and a new color value, fill the area around the point with the new color value until all the original color values are changed.

Example 1:

Enter:

Image = [[1rem 1pr 1], [1jre 1pr 0], [1je 0pr 1]]

Sr = 1, sc = 1, newColor = 2

Output: [[2pyrrine 2], [2pyrr0], [2pj0re1]]

Explanation:

In the middle of the image, (coordinates (sr,sc) = (1pl))

The color of all eligible pixels on the path is changed to 2.

Notice that the pixel in the lower right corner has not been changed to 2

Because it is not a pixel connected to the initial point in the up and down, left and right directions.

Description:

The length of image and image [0] is in the range [1,50].

The given initial point will satisfy 0.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report