给定两个字符串s1和s2, 检查两个字符串是否都字谜彼此的。 例子: Input : s1 = "listen" s2 = "silent" Output : The strings are anag...
算法:给定一个单词序列,使用STL打印所有的字谜
给定一组单词,将所有的字谜一起打印出来。 例如, Input: array = {"cat", "dog", "tac", "god", "act"} output: cat tac act, dog...