Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e3d0f5f

Browse files
authoredAug 8, 2024··
rrr.java
1 parent 78a7b90 commit e3d0f5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/main/java/com/thealgorithms/geometry/GrahamScan.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public GrahamScan(Point[] points) {
2727

2828
hull.push(points[0]);
2929

30-
// Find the first point not equal to points[0]//firstNonEqualIndex
30+
// Find the first point not equal to points[0] firstNonEqualIndex
3131
// and the first point not collinear firstNonCollinearIndex with the previous points
3232
int firstNonEqualIndex;
3333
for (firstNonEqualIndex = 1; firstNonEqualIndex < points.length; firstNonEqualIndex++) {

0 commit comments

Comments
 (0)
Please sign in to comment.