Calculate the taxicab distance - the sum of absolute differences between coordinates.
Also known as taxicab distance or L1 distance, it measures the distance a taxi would drive in a city laid out in square blocks.
d = |x₁-y₁| + |x₂-y₂| + ... + |xₙ-yₙ|