From d251ecf0950fb5fa71d77e0a1ed8ae8771bcd64e Mon Sep 17 00:00:00 2001 From: Adarsh Gupta Date: Sun, 5 Feb 2023 14:07:43 +0530 Subject: [PATCH] Fix typo in algorithm/geometry content --- apps/website/contents/algorithms/geometry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/website/contents/algorithms/geometry.md b/apps/website/contents/algorithms/geometry.md index 477be1ea..d08a4b41 100644 --- a/apps/website/contents/algorithms/geometry.md +++ b/apps/website/contents/algorithms/geometry.md @@ -33,7 +33,7 @@ In algorithm interviews, geometry is usually not be the focus of the problem (yo ### Distance between two points -When comparing the between two points, using dx2 + dy2 is sufficient. It is unnecessary to square root the value. Examples: [K Closest Points to Origin](https://leetcode.com/problems/k-closest-points-to-origin/) +When comparing the distance between two points, using dx2 + dy2 is sufficient. It is unnecessary to square root the value. Examples: [K Closest Points to Origin](https://leetcode.com/problems/k-closest-points-to-origin/) ### Overlapping circles