8000 fix build · vikashsahu4/Leetcode@3dbf2e4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3dbf2e4

Browse files
fix build
1 parent 6bd7690 commit 3dbf2e4

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+1
-1
lines changed

src/main/java/com/fishercoder/solutions/_149.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
public class _149 {
3939

4040
public static class Solution1 {
41-
/**credit: https://leetcode.com/problems/max-points-on-a-line/discuss/47113/A-java-solution-with-notes*/
41+
/** credit: https://leetcode.com/problems/max-points-on-a-line/discuss/47113/A-java-solution-with-notes */
4242
public int maxPoints(Point[] points) {
4343
if (points == null) return 0;
4444
if (points.length <= 2) return points.length;

0 commit comments

Comments
 (0)
0