forked from tdwojak/Python2017
32 lines
835 B
Python
32 lines
835 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
"""
|
|
Napisz funkcję euclidean_distance obliczającą odległość między
|
|
dwoma punktami przestrzeni trójwymiarowej. Punkty są dane jako
|
|
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):
|
|
l = [x,y]
|
|
edl = []
|
|
for c1 in range(3):
|
|
edl.append(l[0][c1] - l[1][c1])
|
|
edl2 = [i**2 for i in edl]
|
|
return ( sum(edl2) ) ** 0.5
|
|
|
|
def tests(f):
|
|
inputs = [[(2.3, 4.3, -7.5), (2.3, 8.5, -7.5)]]
|
|
outputs = [4.2]
|
|
|
|
for input, output in zip(inputs, outputs):
|
|
if f(*input) != output:
|
|
return "ERROR: {}!={}".format(f(*input), output)
|
|
break
|
|
return "TESTS PASSED"
|
|
|
|
if __name__ == "__main__":
|
|
print(tests(euclidean_distance))
|