We use the most advanced technologies available today
from typing import Tuple
from math import sqrt
def euclidean_distance(point1: Tuple[int, int],
point2: Tuple[int, int]) -> float:
x1, y1 = point1
x2, y2 = point2
return sqrt((x2 - x1) ** 2 + (y2 - y1) ** 2)