Skip to content
Snippets Groups Projects

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

1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
+ 2
2
@@ -970,11 +970,11 @@ $$
## Complexité du tri par sélection?
```C
int ind = 0
int ind = 0;
while (ind < SIZE-1) {
min = find_min(tab[ind:SIZE]);
swap(min, tab[ind]);
ind += 1
ind += 1;
}
```
Loading