Skip to content
Snippets Groups Projects
Commit 8d2b51f0 authored by Arian Ubuntu's avatar Arian Ubuntu
Browse files

Removed double "sorted" in print

parent 3c4a8593
No related branches found
No related tags found
1 merge request!1Removed double "sorted" in print
...@@ -49,7 +49,7 @@ int main(int argc, char **argv) { ...@@ -49,7 +49,7 @@ int main(int argc, char **argv) {
if (is_sorted(size, res)) { if (is_sorted(size, res)) {
printf("The result is sorted\n"); printf("The result is sorted\n");
} else { } else {
printf("The result is not sorted sorted\n"); printf("The result is not sorted\n");
return EXIT_FAILURE; return EXIT_FAILURE;
} }
return EXIT_SUCCESS; return EXIT_SUCCESS;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment