in str/apps/src/BoardAnalyzer.cpp [80:97]
int BoardAnalyzer::getInRightSideCount()
{
int rightSideCount = 0;
// �u���b�N�̏����ʒu�ō����l�p�`��ɂ�����̂��J�E���g
for(int i=0; i<5; i++)
{
for(int j=0; j<6; j++)
{
if(positions[i] == rightSide[j])
{
rightSideCount++;
}
}
}
return rightSideCount;
}