remove comments

This commit is contained in:
onyx-and-iris 2024-01-17 18:14:41 +00:00
parent 10c4290fb8
commit adf9534443

View File

@ -37,12 +37,12 @@ def knn(point: Point, neighbours):
neighbours = [ neighbours = [
Point("A", 5, True, False, 300), # A Point("A", 5, True, False, 300),
Point("B", 3, True, True, 225), # B Point("B", 3, True, True, 225),
Point("C", 1, True, False, 75), # C Point("C", 1, True, False, 75),
Point("D", 4, False, True, 200), # D Point("D", 4, False, True, 200),
Point("E", 4, False, False, 150), # E Point("E", 4, False, False, 150),
Point("F", 2, False, False, 50), # F Point("F", 2, False, False, 50),
] ]
point = Point("T", 4, True, False) point = Point("T", 4, True, False)