Consider a grid of points and a path consisting of straight line segments connecting all these points, starting from the bottom left corner and ending at the upper right corner. Such a path is called efficient if each point is only passed through once and no two line segments intersect. How many efficient paths are there when ?
Problem 839
Official solution
Solution:
The general answer is : Simply note that the points in each column must be taken in order, and anything satisfying this avoids intersections, so just choose the steps during which to be in the first column.