You're given 2 grids filled with 1 and 0 values (in the form of an array of strings), adjacent 1s are considered regions, your task is to count the matching regions in both grids, adjacent means up, down, left or right, diagonal 1s are not considered part of the region.
In the Recursive-region-check.js
we loop through the grids searching for the start of a region (searching for a 1), then we recursively check if the adjacent cells are part of the region and if it matches with the other grid, then we replace with 0 be it because it matched and we counted it, or didn't match but we already evaluated all the cells of the region in both grids.