Update geometry/graham_scan_algorithm.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Lajat5
2021-11-08 12:07:13 +05:30
committed by GitHub
parent 7ef02d1cdb
commit f7f735b64a

View File

@@ -13,7 +13,7 @@
*subset.
*
* The worst case time complexity of Jarviss Algorithm is O(n^2). Using
*Grahams scan algorithm, we can find Convex Hull in O(nLogn) time.
* Grahams scan algorithm, we can find Convex Hull in O(nLogn) time.
*
* ### Implementation
*