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

Merge branch 'master' into 'master'

Corrected small typo in complexity formula for graph search.

See merge request algorithmique/cours!33
parents 339c2e8a 4d9ba469
No related branches found
No related tags found
1 merge request!33Corrected small typo in complexity formula for graph search.
Pipeline #25087 passed
......@@ -59,7 +59,7 @@ file visiter(sommet, file)
* Étape 1: $\mathcal{O}(|V|)$,
* Étape 2: $\mathcal{O}(2|E|)$,
* Total: $\mathcal{O}(|V| + |2|E|)$.
* Total: $\mathcal{O}(|V| + 2|E|)$.
# Exercice
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment