What is the difference between Euclidean distance and Manhattan distance?
January 9, 2025
Euclidean distance is the straight-line distance between two points in a multi-dimensional space (the L2 norm).
Manhattan distance is the sum of the absolute differences of their coordinates (the L1 norm), often used in grid-based distance calculations.