CB100

Notas, resueltos y tps de la materia Algoritmos y Estructuras de Datos
Index Commits Files Refs README
commit 97da3a8ee893b18700edd44a349feeeffa8cb9dc
parent 295f59f189fbb8cb265e98b506cf57d22f1ec70e
Author: Martin Kloeckner <mjkloeckner@gmail.com>
Date:   Wed, 23 Jul 2025 17:10:06 -0300

fix typo "teorema maestro"

Diffstat:
Mnotas/complejidad_algoritmica/complejidad_algoritmica.md | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/notas/complejidad_algoritmica/complejidad_algoritmica.md b/notas/complejidad_algoritmica/complejidad_algoritmica.md
@@ -281,7 +281,7 @@ $T(n)$ resulta:
 $$T(n) = 
 \begin{cases}
 \hspace{0.75em} \mathcal{O}(n^{(n/b)}\cdotp n^{k}) & \text{si } a > 1 \\
-\hspace{0.75em} \mathcal{O}(n^{k}                  & \text{si } a = 1 \\
+\hspace{0.75em} \mathcal{O}(n^{k+1})               & \text{si } a = 1 \\
 \hspace{0.75em} \mathcal{O}(n^k)                   & \text{si } a < 1
 \end{cases}$$