A house is represented by a matrix where “\” and “/” represent a wall and blank space is empty space. We will consider two rooms different if we will be unable to reach another room.
Input:
[
“ /”
“/\”
]
Output: 3
Explanation: 2 X 2 house is shown below:
The first line of input contains an integer 'T' representing the number of test cases.
The first line of each test case contains the ‘N’ number of strings.
The next ‘N’ lines of each test case contain a single string of length ‘N’.
For each test case, return the number of the separate rooms.
The output of each test case will be printed in a separate line.
You do not need to print anything, it has already been taken care of. Just implement the given function.
1 <= T <= 5
2 <= N <= 30
Time limit: 1 sec
Plantation
COUNT ISLANDS
Capturing Grid
Rotting Oranges
Distance to a Cycle in Undirected Graph