Solution: Regions Cut by Slashes
Let's solve the Regions Cut By Slashes problem using the Union Find pattern.
We'll cover the following
Statement
An grid is composed of , squares, where each square consists of a “/”, “\”, or a blank space. These characters divide the square into adjacent regions.
Given the grid represented as a string array, return the number of regions.
Note:
- Backslash characters are escaped, so “\” is represented as “\\”.
- A square in the grid will be referred to as a box.
Constraints:
- The grid consists of only “/”, “\”, or " " characters.
- 1
grid.length
30
The following demonstration shows how the grid can be visualized:
Level up your interview prep. Join Educative to access 80+ hands-on prep courses.