docs: fixing test example and adding more information to clarify

This commit is contained in:
zanninso 2024-05-03 10:08:11 +01:00 committed by zanninso
parent d053bbf509
commit 6f356f73b5
1 changed files with 4 additions and 2 deletions

View File

@ -1,10 +1,12 @@
## Palindrome
## AlmostPalindrome
### Instructions
In a file named `AlmostPalindrome.java` write a function `isAlmostPalindrome` that returns true if the String in parameter is almost palindrome.
A word is considered "almost a palindrome" if removing one letter from the word makes it a palindrome.
> 💡 The String in parametre will contains at least 3 letters.
### Expected Functions
```java
@ -22,7 +24,7 @@ Here is a possible `ExerciseRunner.java` to test your function :
```java
public class ExerciseRunner {
public static void main(String[] args) {
System.out.println(AlmostPalindrome.isAlmostPalindrome("reviver"));
System.out.println(AlmostPalindrome.isAlmostPalindrome("Racedcar"));
System.out.println(AlmostPalindrome.isAlmostPalindrome("level"));
}
}