docs: adding more details to clarify

This commit is contained in:
zanninso 2024-05-09 02:24:57 +01:00
parent 4a12cac8e6
commit 8d9d0d42b5
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
### 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.
A word is considered "almost a palindrome" if its not palindrome and by removing one letter from the word makes it a palindrome.
> 💡 The String in parametre will contains at least 3 letters.