Compare commits

...

1 Commits

Author SHA1 Message Date
Meutel 7fac0b5f63 Correction palindrome 2019-06-16 16:12:37 +02:00
1 changed files with 8 additions and 1 deletions

View File

@ -7,7 +7,14 @@ public class Palindrome {
}
private static final boolean estPalindrome(char[] mot) {
return false;
for (int i=0; i < mot.length/2; i++) {
char c1 = mot[i];
char c2 = mot[mot.length -i-1];
if (c1 != c2) {
return false;
}
}
return true;
}
}