We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
assert
print
1 parent 29631e4 commit 5f55e6eCopy full SHA for 5f55e6e
03_functions.py
@@ -8,5 +8,5 @@ def comb(a, b):
8
def diff(a, b):
9
return a - b
10
11
-print(comb(15, 4)) # 19
12
-print(diff(15, 4)) # 11
+assert comb(15, 4) == 19
+assert diff(15, 4) == 11
0 commit comments