We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bd7690 commit 3dbf2e4Copy full SHA for 3dbf2e4
src/main/java/com/fishercoder/solutions/_149.java
@@ -38,7 +38,7 @@
38
public class _149 {
39
40
public static class Solution1 {
41
- /**credit: https://leetcode.com/problems/max-points-on-a-line/discuss/47113/A-java-solution-with-notes*/
+ /** credit: https://leetcode.com/problems/max-points-on-a-line/discuss/47113/A-java-solution-with-notes */
42
public int maxPoints(Point[] points) {
43
if (points == null) return 0;
44
if (points.length <= 2) return points.length;
0 commit comments