From 8132adbb02ce78fb3367afb1d5f0cfde84de6b31 Mon Sep 17 00:00:00 2001 From: Lukas Baumann Date: Thu, 18 Feb 2021 09:25:33 +0100 Subject: [PATCH] Create 2 - The Triangles are Right.py --- 11/c/2 - The Triangles are Right.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 11/c/2 - The Triangles are Right.py diff --git a/11/c/2 - The Triangles are Right.py b/11/c/2 - The Triangles are Right.py new file mode 100644 index 0000000..4581d50 --- /dev/null +++ b/11/c/2 - The Triangles are Right.py @@ -0,0 +1,2 @@ +def rightTrianglePerimeter(a, b): + return a + b + hypotenuse(a, b)