Skip to content
Snippets Groups Projects
Verified Commit eb891f48 authored by orestis.malaspin's avatar orestis.malaspin
Browse files

corrected typos in palndrome code

parent 1763ff2a
Branches
No related tags found
No related merge requests found
......@@ -301,7 +301,7 @@ Mot qui se lit pareil de droite à gauche que de gauche à droite:
```C
while (first_index < last_index {
if mot[first_index] != mot [last_index] {
if (mot[first_index] != mot [last_index]) {
return false;
}
first_index += 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment