Skip to content

Commit 635e093

Browse files
committed
Print message about which points are in hull
1 parent 8b45b95 commit 635e093

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

contents/graham_scan/code/javascript/graham-scan.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,5 @@ const points = [
5656
];
5757

5858
const convexHull = grahamScan(points);
59+
console.log("The points in the hull are:");
5960
convexHull.forEach(p => console.log(`(${p.x}, ${p.y})`));

0 commit comments

Comments
 (0)