From 2a61822956fcd50712b9d955a593eca8cb135a4d Mon Sep 17 00:00:00 2001 From: Lycle Date: Fri, 4 Jul 2025 21:52:19 +0300 Subject: [PATCH] restore function subtract; fixes #1 --- functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.py b/functions.py index dededd1..114cc6d 100644 --- a/functions.py +++ b/functions.py @@ -2,7 +2,7 @@ def add(a, b): return a + b def subtract(a, b): - return a + b # <--- fix this in step 7 + return a - b # <--- fix this in step 7 def multiply(a, b): return a * b