[LeetCode] Hard - 149 Max Points on a Line
▶149 - Max Points on a Line ▶문제 Given an array of points where points[i] = [xi, yi] represents a point on the X-Y plane, return the maximum number of points that lie on the same straight line. ▶예제 Input: points = [[1,1],[2,2],[3,3]] Output: 3 Input: points = [[1,1],[3,2],[5,3],[4,1],[2,3],[1,4]] Output: 4 ▶풀이 단순히 모든 점들을 확인해보는 방식을 사용했다. 시간 복잡도가 O(n^2)가 나오는 방식이라서 시간초과가 날까 봐 걱정했지만 통과가 되었다. 점들의 기울기 ..