Skip to content

Commit 9287e72

Browse files
committed
No ;
1 parent 9f322fd commit 9287e72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Desarrollo/17_ComplejidadAlgoritmica.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ def factorial_recursive(n):
2525
startingTime = time.time()
2626
factorial(n)
2727
endTime = time.time()
28-
print(f"Execturion time with bucle\t{endTime - startingTime}");
28+
print(f"Execturion time with bucle\t{endTime - startingTime}")
2929

3030
startingTime = time.time()
3131
factorial_recursive(n)
3232
endTime = time.time()
33-
print(f"Execution time with recusive\t{endTime - startingTime}");
33+
print(f"Execution time with recusive\t{endTime - startingTime}")

0 commit comments

Comments
 (0)