예제 #1
0
        public void Part2Example()
        {
            var index = new KeyFinder("abc", 2016).FindIndex();

            Assert.AreEqual(22551, index);
        }
예제 #2
0
        public void Part2()
        {
            var index = new KeyFinder("cuanljph", 2016).FindIndex();

            Console.Out.WriteLine(index);
        }
예제 #3
0
        public void Example()
        {
            var index = new KeyFinder("abc").FindIndex();

            Assert.AreEqual(22728, index);
        }