From fd1f2b36e95c03625297b7b8cba3b1a04a0cc0ed Mon Sep 17 00:00:00 2001 From: mzuenni Date: Tue, 10 Jan 2023 11:40:09 +0100 Subject: change whitespaces --- geometry/convexHull.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'geometry/convexHull.cpp') diff --git a/geometry/convexHull.cpp b/geometry/convexHull.cpp index 9245acc..b1de170 100644 --- a/geometry/convexHull.cpp +++ b/geometry/convexHull.cpp @@ -1,7 +1,7 @@ vector convexHull(vector pts){ sort(all(pts), [](const pt& a, const pt& b){ return real(a) == real(b) ? imag(a) < imag(b) - : real(a) < real(b); + : real(a) < real(b); }); pts.erase(unique(all(pts)), pts.end()); int k = 0; -- cgit v1.2.3