Create a Manhattan Distance Calculation Formula

This is the first attempt of the Manhattan Distance Formula, feel free to update it.
This commit is contained in:
keithbored3310 2022-08-07 23:15:17 +08:00 committed by GitHub
parent 3d2cfb99b7
commit 9f8b5ddd56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,18 @@
//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;
}