Hard
093Max Points on a Line
Given points [x,y], return the maximum number of points on one straight line.
EXAMPLES
Example 1
Input
{
"points": [
[
1,
1
],
[
2,
2
],
[
3,
3
]
]
}
Output
3FUNCTION SHAPE
points: intMatrix→int