Skip to content

Commit c72feb1

Browse files
committed
simple addition function task complete
1 parent 25b171c commit c72feb1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

015_add_numbers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
# * Returns the result
1212

1313
# YOUR FUNCTION GOES BELOW THIS LINE
14-
14+
def add_numbers(num_1, num_2):
15+
return num_1 + num_2
1516

1617

1718
# YOUR FUNCTION GOES ABOVE THIS LINE

0 commit comments

Comments
 (0)