Problem of the day
The first line of input contains two integer values, 'N' and 'M', separated by a single space. They represent the 'rows' and 'columns' respectively, for the two-dimensional array/list.
The second line onwards, the next 'N' lines or rows represent the ith row values.
Each of the i-th row constitutes 'M' column values separated by a single space.
The only line of output prints the number of islands present in the 2-dimensional array.
You are not required to print anything explicitly, it has already been taken care of. Implement the function and return the desired output.
1 <= N <= 10^3
1 <= M <= 10^3
0 <= ARR[i][j] <= 1
Time limit: 1sec
4 5
0 1 1 0 0
1 0 0 1 0
0 0 1 0 0
1 0 0 0 1
3
The first island of connected 1s is signified by: {0, 1}, {0, 2}, {1, 0}, {1, 3}, {2, 2}.
The second island being: {3, 0}.
The third island being: {3, 4}.
4 4
1 0 0 1
0 1 1 0
0 1 1 0
1 0 0 1
1