Leetcode 1453: Maximum Number of Darts Inside of a Circular Dartboard
In this Leetcode problem, we are given a list of point in a 2D-plane, and a radius r
. We should find the maximum number of points we can fit in a disk of radius r
.

High level algorithm
At the high level, we want to find all the potential “good” centers of the disk, then calculate how many points are in each…