LeetCode 1779. Find Nearest Point That Has the Same X or Y Coordinate
Input: x = 3, y = 4, points = [[1,2],[3,1],[2,4],[2,3],[4,4]]
Output: 2
Explanation: Of all the points, only [3,1], [2,4] and [4,4] are valid. Of the valid points, [2,4] and [4,4] have the smallest Manhattan distance from your current location, with a distance of 1. [2,4] has the smallest index, so return 2.Input: x = 3, y = 4, points = [[3,4]]
Output: 0
Explanation: The answer is allowed to be on the same location as your current location.Input: x = 3, y = 4, points = [[2,3]]
Output: -1
Explanation: There are no valid points.Solution:
PreviousLeetCode 1778. Shortest Path in a Hidden GridNextLeetCode 1780. Check if Number is a Sum of Powers of Three
Last updated