Skip to content

Commit

Permalink
Format using black
Browse files Browse the repository at this point in the history
  • Loading branch information
Haleshot committed Sep 11, 2024
1 parent 0db5531 commit 276b913
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 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,8 @@ def k_means_clustering(
max_iterations: int,
) -> list[tuple[float, float]]:
# Your code here
return final_centroids # type: ignore

return final_centroids # type: ignore


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

0 comments on commit 276b913

Please sign in to comment.