We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f322fd commit 9287e72Copy full SHA for 9287e72
Desarrollo/17_ComplejidadAlgoritmica.py
@@ -25,9 +25,9 @@ def factorial_recursive(n):
25
startingTime = time.time()
26
factorial(n)
27
endTime = time.time()
28
- print(f"Execturion time with bucle\t{endTime - startingTime}");
+ print(f"Execturion time with bucle\t{endTime - startingTime}")
29
30
31
factorial_recursive(n)
32
33
- print(f"Execution time with recusive\t{endTime - startingTime}");
+ print(f"Execution time with recusive\t{endTime - startingTime}")
0 commit comments