Merge branch 'BAEL-1525' of https://github.com/eugenp/tutorials into BAEL-1525

This commit is contained in:
Loredana Crusoveanu 2018-02-10 21:08:10 +02:00
commit 7c759545be

View File

@ -58,4 +58,5 @@ public class Palindrome {
return IntStream.range(0, temp.length() / 2)
.noneMatch(i -> temp.charAt(i) != temp.charAt(temp.length() - i - 1));
}
}