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

pull/572/head
Adarsh Gupta 2 years ago committed by GitHub
parent bbbbb9cad4
commit 8113199732
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

Loading…
Cancel
Save