Exemplo n.º 1
0
        public void ReachingPoints_1()
        {
            var solution = new _0780_ReachingPoints();
            var result   = solution.ReachingPoints(1, 1, 3, 5);

            Assert.IsTrue(result);
        }
Exemplo n.º 2
0
        public void ReachingPoints_2()
        {
            var solution = new _0780_ReachingPoints();
            var result   = solution.ReachingPoints(1, 1, 2, 2);

            Assert.IsFalse(result);
        }