Skip to content

Latest commit

 

History

History
5 lines (3 loc) · 249 Bytes

README.md

File metadata and controls

5 lines (3 loc) · 249 Bytes

palindrome

Write code to check a String is palindrome or not? A palindrome is those String whose reverse is equal to the original. This can be done by using either StringBuffer reverse() method or by technique demonstrated in the solution here.