We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13c0e4c commit 7611b34Copy full SHA for 7611b34
src/test/java/com/thealgorithms/stacks/PalindromeWithStackTest.java
@@ -56,4 +56,10 @@ public void testBlankString() {
56
String testString = "";
57
assertTrue(palindromeChecker.checkPalindrome(testString));
58
}
59
+
60
+ @Test
61
+ public void testStringWithNumbers() {
62
+ String testString = "bio123ib";
63
+ assertTrue(palindromeChecker.checkPalindrome(testString));
64
+ }
65
0 commit comments