-
Notifications
You must be signed in to change notification settings - Fork 115
String Palindrome #109
Copy link
Copy link
Open
Labels
easyThis doesn't seem rightThis doesn't seem righthactoberfest-acceptedup for grabsGood for newcomersGood for newcomers
Description
Activity
Metadata
Metadata
Assignees
Labels
easyThis doesn't seem rightThis doesn't seem righthactoberfest-acceptedup for grabsGood for newcomersGood for newcomers
You need to write a simple Java program to check if a given String is palindrome or not. A Palindrome is a String which is equal to the reverse of itself, e.g., "Bob" is a palindrome because of the reverse of "Bob" is also "Bob." Solve using either recursive or iterative method.