fixed some spellings

This commit is contained in:
Keshav Bohra
2021-10-05 12:49:23 +05:30
parent 199d2637cc
commit 1589263947
41 changed files with 80 additions and 80 deletions

View File

@ -33,7 +33,7 @@ function convexHull (points) {
points.sort(compare)
const p1 = points[0]; const p2 = points[pointsLen - 1]
// Divide Hull in two halfs
// Divide Hull in two halves
const upperPoints = []; const lowerPoints = []
upperPoints.push(p1)