Esempio n. 1
0
        public void Test1()
        {
            var strings = new List <string>
            {
                "abcdef",
                "bababc",
                "abbcde",
                "abcccd",
                "aabcdd",
                "abcdee",
                "ababab",
            };
            var result = _functions.GetCheckSum(strings);

            Assert.AreEqual(12, result);
        }