其实……要是直接复制粘贴这个的确是WA……因为可能是因为帖子的原因,one[] 和 two[]字符对不上,需要读者自己调整下。
另外,这个代码的巧妙处理避开了这道题目最绕人的地方:单个字符的输入。
WA的同学看这里:
http://online-judge.uva.es/board//viewtopic.php?f=5&t=5863&sid=91aaddded4ff3586f1e90addd4dd460a
或者我简要说下:
单字符情况,比如,我输入 E,只能判定palindrome,而不是mirror;
如果是输入 4,也是只能判定palindrome,不是mirror(但是两者原因不同,注意这句话:“A mirrored string is a string for which when each of the elements of the string is changed to its reverse (if it has a reverse) and the string is read backwards the result is the same as the original string.”),重点强调“(if it has a reverse) ”
所以如果既是palindrome,也是mirror,只能是A,O之类的情况(自身mirror自身)