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

corrected typos

parent 6a68bd63
No related branches found
No related tags found
No related merge requests found
Pipeline #35706 passed
......@@ -266,6 +266,8 @@ Pas de nombres négatifs encore...
# Le complément à 2 (1/2)
\footnotesize
## Questions:
* Comment on écrit `+0` et `-0`?
......@@ -440,7 +442,7 @@ rien quicksort(entier tableau[], entier ind_min, entier ind_max)
ind_pivot = partition(tableau, ind_min, ind_max)
si (longueur(tableau[ind_min:ind_pivot-1]) != 0)
quicksort(tableau, ind_min, pivot_ind - 1)
si (longueur(tableau[ind_pivot+1:ind_max-1]) != 0)
si (longueur(tableau[ind_pivot+1:ind_max]) != 0)
quicksort(tableau, ind_pivot + 1, ind_max)
```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment