Esempio n. 1
0
        public void TestStringAnagram()
        {
            List <string> dictionary = new List <string>
            {
                ""
            };
            List <string> query = new List <string>
            {
                ""
            };
            List <int> expected = new List <int> {
            };
            List <int> actual   = Lessons.StringAnagram(dictionary, query);

            Assert.AreEqual(expected, actual);
        }