79. Distance Points to Lines

Hard

Given sets of points P0, P1 (shape (n, 2)) describing lines and a set of points P (shape (m, 2)), return the (m, n) distances from each point to each line.

Implement solve(...)