Skip to content

Commit 86881e5

Browse files
check if String is Palindrome
heck if String is Palindrome?(solution) Another easy coding question based upon String, I am sure you must have done this numerous time. Your program should return true if String is Palindrome, otherwise false. For example, if the input is "radar", the output should be true, if input is "madam" output will be true, and if input is "Java" output should be false.
1 parent de28273 commit 86881e5

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Challenge13.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
package challenge13;
22

33
import static org.junit.Assert.assertTrue;
4-
54
import java.util.Set;
6-
75
import org.junit.jupiter.api.Test;
86

97
/**

0 commit comments

Comments
 (0)