public void IslandCountShouldWork3() { var input = new char[][] { new char[] { 'W', 'W' }, new char[] { 'W', 'W' }, }; var result = IslandCount.GetCount(input); Assert.Equal(0, result); }
public void SmallerIslandShouldWork4() { var input = new char[][] { new char[] { 'W', 'W' }, new char[] { 'W', 'W' }, }; var result = IslandCount.GetSmallestIsland(input); Assert.Equal(0, result); }