From 4ad1a93cb098a165cc8bcd1e7c411227c8414cae Mon Sep 17 00:00:00 2001 From: deemaalamer <39879175+codeforgirls-sa@users.noreply.github.com> Date: Sat, 5 Sep 2020 22:13:27 +0300 Subject: [PATCH] Updated subs function --- basic-maths.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/basic-maths.py b/basic-maths.py index 0ff62d2..e5da6b3 100644 --- a/basic-maths.py +++ b/basic-maths.py @@ -4,8 +4,7 @@ def addition(a,b): return a + b def substraction(a,b): - # add code here - # return result + return a -b def multiplication(a,b): # add code here