예제 #1
0
파일: UnitTest1.cs 프로젝트: curtca/AoC2020
        public void Test(string input, long expected)
        {
            Floor f = new Floor(input);
            long  b = f.Black();

            Assert.Equal(expected, b);
        }