コード例 #1
0
ファイル: UnitTest1.cs プロジェクト: curtca/AoC2020
        public void Test(string input, long expected)
        {
            Tiles t = new Tiles(input);
            long  c = t.CornersProduct();

            Assert.Equal(expected, c);
        }