Exemple #1
0
        static void Main(string[] args)
        {
            Console.WriteLine(Kata.IsAnagram("ekoc", "coke"));             // true
            Console.WriteLine(Kata.IsAnagram("dumble", "bumble"));         // false
            Console.WriteLine(Kata.IsAnagram("TwoO", "Woot"));             // true
            Console.WriteLine(Kata.IsAnagram("apple", "palee"));           // false
            Console.WriteLine(Kata.IsAnagram("ound", "round"));            // false
            Console.WriteLine(Kata.IsAnagram("buckethead", "DeathCubek")); // true

            Console.ReadLine();
        }