• Problem conditions are wrong

Question related to mission The Longest Palindromic

 

In the problem page, it says that 1 < |text| <= 20, but if you don't do it as 1 <= |text| <= 20, it will show an error for the example longest_palindromic("1") == "1", as it should be null with the conditions they give you in the first place.

Can someone fix this please? It is not a huge problem, but it could confuse a lot of people trying to solve this problem.