We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7474de9 commit ca7e540Copy full SHA for ca7e540
exercises/04-area_of_right_triangle/app.py
@@ -4,7 +4,7 @@
4
5
def area_of_triangle(arg1, arg2):
6
#your code here, please remove the "None"
7
- return int(arg1) * int(arg2) / 2
+ return None
8
9
# Testing your function
10
-print(area_of_triangle(b, h))
+print(area_of_triangle(b, h))
0 commit comments