Create 2 - The Triangles are Right.py

This commit is contained in:
Lukas Baumann 2021-02-18 09:25:33 +01:00 committed by GitHub
parent 500107655d
commit 8132adbb02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,2 @@
def rightTrianglePerimeter(a, b):
return a + b + hypotenuse(a, b)