From 811319973295acb71c5f54869c83d4398dbe9a85 Mon Sep 17 00:00:00 2001 From: Adarsh Gupta Date: Sun, 5 Feb 2023 14:15:31 +0530 Subject: [PATCH] contents(algo): fix typo in algorithm/geometry content (#571) --- 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