Skip to content

Commit 76e1190

Browse files
authored
Update time_algo_exec.py
1 parent 3a3671c commit 76e1190

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

other/time_algo_exec.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ def calc(operations: dict) -> float:
2121
>>> operations1 = {"addition":(2, 0.1), "subtraction":(1, 0.2)}
2222
>>> operations2 = {"addition":(2, 0.1), "subtraction":(1, 0.2, 1)}
2323
>>> calc(operations1)
24-
>>> 0.4
24+
0.4
2525
>>> calc(operations2)
26-
>>> 0
26+
0
2727
"""
2828
temps = 0
2929
for couple in operations.values():

0 commit comments

Comments
 (0)