You can write the number of ways to get to each intersection point while minimizing Taxicab distance by using the fact that the number of paths at any given intersection is equal to the sum of the number of paths that come directly from the left and the number of paths that come directly from below.

You might notice that this looks like Pascal's Triangle turned on its side. That's because it is exactly that. The reason these numbers are equal to binomial coefficients is because the number of paths is exactly the number of ways to arrange the rights and lefts in the path; to get to point $B$ you need $4$ lefts and $4$ rights. There are $$\binom{8}{4}=70$$ ways to choose the order of these rights and lefts.
You should be able to solve the second question using this method.
Good luck :)
EDIT: I've included how the numbers would be assigned for the third part. Notice the $10$ assigned to $(2,4)$.
