Пример #1
0
        public void Play()
        {
            Hanoi hanoi = new Hanoi(5);
            int   moves = hanoi.Start();

            Assert.AreEqual(31, moves);
        }