From 500107655d6d33cca86adc592d08a8330fd166d0 Mon Sep 17 00:00:00 2001 From: Lukas Baumann Date: Thu, 18 Feb 2021 09:24:06 +0100 Subject: [PATCH] Create 1 - Hypothenuse --- 11/c/1 - Hypothenuse | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 11/c/1 - Hypothenuse diff --git a/11/c/1 - Hypothenuse b/11/c/1 - Hypothenuse new file mode 100644 index 0000000..ef352ad --- /dev/null +++ b/11/c/1 - Hypothenuse @@ -0,0 +1,2 @@ +def hypotenuse(a, b): + return (a**2+b**2)**0.5