You are given a 2D grid. A '#' represents an obstacle and a '.' represents free space. You need to find the areas of the disconnected components. The cells (i+1, j), (i, j+1), (i-1, j), (i, j-1) are the adjacent to the cell (i, j).
There are multiple test cases in this problem.
In the first test case, there are 2 components with areas 1 and 3 respectively.