-
I'm very intrigued on this and I'd like it if someone with experience could give me some advice on my question, it would be much appreciated! |
Beta Was this translation helpful? Give feedback.
Answered by
Emojees
Jan 22, 2025
Replies: 1 comment
-
A string is a palindrome when it stays the same on reversing the order of characters in that string. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Kuefo
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A string is a palindrome when it stays the same on reversing the order of characters in that string.
It can be achieved by reversing the original string first and then checking if the reversed string is equal to the original string.