Yagnesh M. Bhadiyadra

Results 2 issues of Yagnesh M. Bhadiyadra

``` if m.shape[0]>1: for i in range(m.shape[0]): color = m[i, 0] isFrontier = True for j in range(m.shape[1]): if color != m[i,j]: isFrontier = False break if isFrontier: frontiers.append(Frontier(color, 'h',...