Replace one-letter var names
1 fil de conversation non résolu
1 fil de conversation non résolu
Rapports de requête de fusion
Activité
Filtrer l'activité
8 8 if (word == null || word.isEmpty() || !Pattern.matches("[\\p{Alpha}]*", word)) { 9 9 throw new IllegalArgumentException(); 10 10 } 11 for (int i = 0; i< word.length() / 2; i++ ) { 12 char f = word.charAt(i); 13 char l = word.charAt(word.length() - i - 1); 14 if (f != l) { 11 for (int index = 0; index< word.length() / 2; index++ ) { 12 char first = word.charAt(index); 13 char last = word.charAt(word.length() - index);
Veuillez vous inscrire ou vous connecter pour répondre