+ 1
How to check string is symmetric in c#
3 Respuestas
+ 1
If you mean that you want to know if a word is a palondrome, then you could through the string with a loop and chack if the first char is equal to the last , second char equal to the second last and so on.. Or you can more simply reverse the string and then compare if the 2 strings are equal or not
0
What is difference between palindrome and symmetric..?
0
What