14 lines
181 B
Python
14 lines
181 B
Python
import collections
|
|
|
|
def dfs(path:list, visited):
|
|
if path.
|
|
|
|
n = int(input())
|
|
points = []
|
|
for i in range(n):
|
|
x = int(input())
|
|
y = int(input())
|
|
points.append([x, y])
|
|
|
|
|