-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1779.py
48 lines (44 loc) · 1.32 KB
/
1779.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# [ LeetCode ] 1779. Find Nearest Point That Has the Same X or Y Coordinate
def solution(x: int, y: int, points: list[list[int]]) -> int:
answer: int = -1
previous_distance: int = 2 * (10 ** 4)
for idx, (target_x, target_y) in enumerate(points):
if x == target_x or y == target_y:
target_distance: int = abs(x - target_x) + abs(y - target_y)
if target_distance < previous_distance:
previous_distance = target_distance
answer = idx
return answer
if __name__ == "__main__":
cases: list[dict[str, dict[str, int | list[list[int]]]] | int] = [
{
"input": {
"x": 3,
"y": 4,
"points": [[1,2],[3,1],[2,4],[2,3],[4,4]]
},
"output": 2
},
{
"input": {
"x": 3,
"y": 4,
"points": [[3,4]]
},
"output": 0
},
{
"input": {
"x": 3,
"y": 4,
"points": [[2,3]]
},
"output": -1
},
]
for case in cases:
assert case["output"] == solution(
x=case["input"]["x"],
y=case["input"]["y"],
points=case["input"]["points"]
)