1 #include "BoardAnalyzer.h"    16     positions = initPositions;
    22     int leftSquareCount = 0;
    25     for(
int i=0; i<5; i++)
    27         for(
int j=0; j<5; j++)
    29             if(positions[i] == leftSquare[j])
    36     return leftSquareCount;
    39 bool BoardAnalyzer::hasExchangePatternOnLeftSquare()
    42     for(
int i=0; i<5; i++)
    44         for(
int j=0; j<5; j++)
 
void set(int *initPositions)
int getInLeftSquareCount()