Skip to content
Snippets Groups Projects
Commit c1654c6f authored by yassin.elhakoun's avatar yassin.elhakoun Committed by orestis.malaspin
Browse files

Update cours_7.md (ligne 973 et 977 deux ";" étaient manquants alors que...

parent 0eea224b
No related branches found
No related tags found
No related merge requests found
...@@ -970,11 +970,11 @@ $$ ...@@ -970,11 +970,11 @@ $$
## Complexité du tri par sélection? ## Complexité du tri par sélection?
```C ```C
int ind = 0 int ind = 0;
while (ind < SIZE-1) { while (ind < SIZE-1) {
min = find_min(tab[ind:SIZE]); min = find_min(tab[ind:SIZE]);
swap(min, tab[ind]); swap(min, tab[ind]);
ind += 1 ind += 1;
} }
``` ```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment