78. Distance Point to Lines

Hard

Given sets of points P0, P1 (shape (n, 2)) describing lines, and a single point p (shape (1, 2)), return the distance from p to each line i.

Implement solve(...)