Skip to content

Commit 23b8217

Browse files
committed
not yet
1 parent c13b253 commit 23b8217

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

0 Bytes
Binary file not shown.

src/Class27/MostPointsOnALine.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public int most(Point[] points) {
6363

6464
public static void main(String[] args) {
6565
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), };
66+
Point[] points = new Point[]{new Point(1,2), new Point(3,4),new Point(3,6),new Point(0,-2), };
6767
System.out.println(sol.most(points));;
6868
}
6969

0 commit comments

Comments
 (0)