Skip to content

Commit

Permalink
Update logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Haleshot committed Sep 11, 2024
1 parent 697a56f commit 0db5531
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion medium/K-Means_Clustering/K-Means_Clustering.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ def k_means_clustering(
max_iterations: int,
) -> list[tuple[float, float]]:
# Your code here
return final_centroids
return final_centroids # type: ignore


points = [(1, 2), (1, 4), (1, 0), (10, 2), (10, 4), (10, 0)]
Expand Down

0 comments on commit 0db5531

Please sign in to comment.