Skip to content

Commit 3cd9857

Browse files
committed
Fix: correct add_numbers to return a + b instead of a - b
Fixes #1, #2, #4, #5, #6, #7
1 parent 04b5581 commit 3cd9857

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

main.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
def add_numbers(a, b):
2-
# ОШИБКА: должно быть a + b
3-
return a - b
2+
return a + b

0 commit comments

Comments
 (0)