contents(algo): fix typo in algorithm/geometry content (#571)

This commit is contained in:
Adarsh Gupta
2023-02-05 14:15:31 +05:30
committed by GitHub
parent bbbbb9cad4
commit 8113199732

View File

@@ -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 dx<sup>2</sup> + dy<sup>2</sup> 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 dx<sup>2</sup> + dy<sup>2</sup> 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