Skip to content
Snippets Groups Projects
Commit 241ff7fd authored by paul.albuquer's avatar paul.albuquer
Browse files

Edit cours_17.md

parent 3257772f
No related branches found
No related tags found
No related merge requests found
Pipeline #38441 passed
......@@ -1235,9 +1235,9 @@ rien tamisage(tab, i)
```python
entier ind_max(tab, i, g, d)
ind_max = i
si tab[ind_max] < tab[g] && size(tab) > g
si g < size(tab) && tab[ind_max] < tab[g]
ind_max = g
si tab[ind_max] < tab[d] && size(tab) > d
si d < size(tab) > d && tab[ind_max] < tab[d]
ind_max = d
retourne ind_max
......
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