forked from tdwojak/Python2017
Task05 completed - passed
This commit is contained in:
parent
d6f3799197
commit
69de9a7441
@ -1,7 +1,6 @@
|
||||
#!/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
|
||||
@ -9,8 +8,11 @@ trzyelementowe listy liczb zmiennoprzecinkowych.
|
||||
np. odległość pomiędzy punktami (0, 0, 0) i (3, 4, 0) jest równa 5.
|
||||
"""
|
||||
|
||||
from math import sqrt
|
||||
|
||||
|
||||
def euclidean_distance(x, y):
|
||||
pass
|
||||
return (sqrt((x[0]-y[0])**2 + (x[1] - y[1])**2))
|
||||
|
||||
def tests(f):
|
||||
inputs = [[(2.3, 4.3, -7.5), (2.3, 8.5, -7.5)]]
|
||||
|
Loading…
Reference in New Issue
Block a user