csharp Moves_any_dimension.cs

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp Moves_any_dimension.cs相关的知识,希望对你有一定的参考价值。

public class Moves : MonoBehaviour
{
    List<int> rows = new List<int>(boardSize);
    List<int> cols = new List<int>(boardSize);
    int diag0;
    int diag1; 

    public void IncrementMove(Vector2 move)
    {
        ++cols[move.x];
        ++rows[move.y];

        // Diagonals
        if (move.x == move.y)
            ++diag0;

        // x = 2, y = 0
        // x = 1, y = 1
        // x = 0, y = 2
        if (move.y == (boardSize - 1) - move.x)
            ++diag1;
    }

    public bool CheckForThree()
    {
        foreach (int currRowCount in rows)
        {
            if (currRowCount == boardSize)
                return true;
        }

        foreach (int currColCount in cols)
        {
            if (currColCount == boardSize)
                return true;
        }

        return diag0 >= boardSize || diag1 >= boardSize;
    }
}

以上是关于csharp Moves_any_dimension.cs的主要内容,如果未能解决你的问题,请参考以下文章

csharp 例如-CSHARP-GroupDocs.Conversion.Examples.CSharp渲染,RenderPSDImageAsPath.cs

csharp 实例-CSHARP-GroupDocs.Conversion.Examples.CSharp变频-ConvertTopresentationAsPath.cs

csharp 实例-CSHARP-GroupDocs.Conversion.Examples.CSharp变频-ConvertTopresentationAsPath.cs

csharp 实例-CSHARP-GroupDocs.Conversion.Examples.CSharp变频-ConvertTopresentationAsPath.cs

csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp索引,AddDocumentToIndex.cs

csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp索引,AddDocumentToIndexAsynchronously.cs