diff --git a/src/algorithms/math/Manhattan Distance b/src/algorithms/math/Manhattan Distance deleted file mode 100644 index 6ce947a5..00000000 --- a/src/algorithms/math/Manhattan Distance +++ /dev/null @@ -1,18 +0,0 @@ -//This function is calculate the manhattan distance -@param x -@param y -@return {SumOhManhattanDistance} - -export default function manhattanDistance(x, y){ - -let SumOfManhattanDistance = 0; - -for (let i = 0; i < x.length; i++){ - for (lei j= 0; j < x[i].length ; j++){ - //Compute the result of the Manhattan Distance - SumOfManhattanDistance += (Math.abs(x[i] -x[j])+Math.abs(y[i] - y[j])); - } -} -//Send the result back to the main function -return SumOfManhattanDistance; -}