Skip to content
Snippets Groups Projects
Commit 4d9ba469 authored by alejandr.escriban's avatar alejandr.escriban
Browse files

Corrected small typo in complexity formula for graph search.

parent f0244f2b
No related branches found
No related tags found
No related merge requests found
......@@ -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.
Finish editing this message first!
Please register or to comment