Skip to content

Commit c19689e

Browse files
committed
Fix Magic calculation
1 parent 85a7f8b commit c19689e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

0x01-python-if_else_loops_functions/102-magic_calculation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ def magic_calculation(a, b, c):
55
elif c > b:
66
return a + b
77
else:
8-
return a * b -c
8+
return a * b - c

0 commit comments

Comments
 (0)