Skip to content

Commit f2d03f1

Browse files
committed
Fix Graham's scan title
1 parent 1819fca commit f2d03f1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/geometry/convex-hull.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ are $\mathcal{O}(N \log N)$, and are asymptotically optimal (as it is proven tha
1212
is no algorithm asymptotically better), with the exception of a few problems where
1313
parallel or online processing is involved.
1414

15-
## Graham Scan Algorithm
15+
## Graham's scan Algorithm
1616
The algorithm first finds the bottom-most point $P_0$. If there are multiple points
1717
with the same Y coordinate, the one with the smaller X coordinate is considered. This
1818
step takes $\mathcal{O}(N)$ time.

0 commit comments

Comments
 (0)