public static bool IsPalindrome(string word)
throw new NotImplementedException("Waiting to be implemented.");
public static bool IsAnagram(string word1,string word2)
throw new NotImplementedException("Waiting to be implemented.");
public static void Main(string[] args)
Console.WriteLine(WordPlay.IsPalindrome("Deleveled"));
Console.WriteLine(WordPlay.IsAnagram("cat","act"));