forked from tdwojak/Python2018
rozwiązanie zad.5
This commit is contained in:
parent
228375a4b2
commit
9bced26d9f
@ -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.
|
np. odległość pomiędzy punktami (0, 0, 0) i (3, 4, 0) jest równa 5.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
def euclidean_distance(x, y):
|
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):
|
def tests(f):
|
||||||
inputs = [[(2.3, 4.3, -7.5), (2.3, 8.5, -7.5)]]
|
inputs = [[(2.3, 4.3, -7.5), (2.3, 8.5, -7.5)]]
|
||||||
|
Loading…
Reference in New Issue
Block a user