We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c13b253 commit 23b8217Copy full SHA for 23b8217
2 files changed
bin/Class27/MostPointsOnALine.class
0 Bytes
src/Class27/MostPointsOnALine.java
@@ -63,7 +63,7 @@ public int most(Point[] points) {
63
64
public static void main(String[] args) {
65
MostPointsOnALine sol = new MostPointsOnALine();
66
- Point[] points = new Point[]{new Point(1,2), new Point(2,4),new Point(3,6),new Point(0,-2), };
+ Point[] points = new Point[]{new Point(1,2), new Point(3,4),new Point(3,6),new Point(0,-2), };
67
System.out.println(sol.most(points));;
68
}
69
0 commit comments