Beispiel #1
0
        public void Test_IsAnagram(string s, string t, bool expected)
        {
            var actual = sut.IsAnagram(s, t);

            Assert.Equal(expected, actual);
        }