You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// "The Manhattan Distance" or "Taxicab Geometry" is a way to express distance in terms of a sum (= "blocks") of x-distance and y-distance
// Design a function that takes 4 arguments: streetA, avenueA (the starting point in terms of street and avenue), streetB, avenueB (the ending point) and computes the number of blocks between the two points.