class Solution { public int visiblePoints(List<List<Integer>> points, int angle, List<Integer> location) { // 算出每一个坐标相对于location位置与x轴的夹角(弧度制),扔到List中排序 // 然后对于每一个点,使用二分或滑动窗口找出小于这个点+angle(转成弧度制)的最大坐标点 // 两者之间的下标差就是...