From 9bced26d9fa53ea41dbf0637f2eafc727eb7cfe0 Mon Sep 17 00:00:00 2001 From: s407545 Date: Sun, 13 May 2018 12:29:59 +0200 Subject: [PATCH] =?UTF-8?q?rozwi=C4=85zanie=20zad.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- labs02/task05.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/labs02/task05.py b/labs02/task05.py index f59268a..527b168 100644 --- a/labs02/task05.py +++ b/labs02/task05.py @@ -9,8 +9,15 @@ trzyelementowe listy liczb zmiennoprzecinkowych. np. odległość pomiędzy punktami (0, 0, 0) i (3, 4, 0) jest równa 5. """ + def euclidean_distance(x, y): - pass + odleglosc = 0 + + for i in range(3): + odleglosc = odleglosc + (x[i] - y[i]) ** 2 + + odleglosc = cmath.sqrt(odleglosc) + return odleglosc def tests(f): inputs = [[(2.3, 4.3, -7.5), (2.3, 8.5, -7.5)]]