Ejemplo n.º 1
0
        public void ThirdTry(int[] A, int expected)
        {
            var solution = new Algorithms.Codility.CountingElements.PermCheck.PermCheck();
            var actual   = solution.ThirdTry(A, expected);

            Assert.AreEqual(expected, actual);
        }
Ejemplo n.º 2
0
        public static IEnumerable <object[]> Data()
        {
            var solution = new Algorithms.Codility.CountingElements.PermCheck.PermCheck();
            var data     = solution.Data();

            foreach (object[] item in data)
            {
                yield return(item);
            }
        }