Update graham_scan_functions.hpp

This commit is contained in:
Lajat5
2021-11-06 18:09:32 +05:30
committed by GitHub
parent 02696ce780
commit 44fd62764f

View File

@@ -168,7 +168,7 @@ std::vector<Point> convexHull(std::vector<Point> points, uint64_t size) {
// If modified array of points has less than 3 points, convex hull is not
// possible
if (m < 3) {
return {}
return {};
};
// Create an empty stack and push first three points to it.