mirror of
https://github.com/yangshun/tech-interview-handbook.git
synced 2026-02-03 02:24:47 +08:00
contents(algo): fix typo in algorithm/geometry content (#571)
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user