Skip to content

Commit 8113199

Browse files
authored
contents(algo): fix typo in algorithm/geometry content (#571)
1 parent bbbbb9c commit 8113199

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/website/contents/algorithms/geometry.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ In algorithm interviews, geometry is usually not be the focus of the problem (yo
3333

3434
### Distance between two points
3535

36-
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/)
36+
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/)
3737

3838
### Overlapping circles
3939

0 commit comments

Comments
 (0)