Skip to content

Commit ec71d3a

Browse files
Update coloring.py
1 parent 790b418 commit ec71d3a

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

backtracking/coloring.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ def color(graph: list[list[int]], max_colors: int) -> list[int]:
112112
[]
113113
>>> color([[0, 1], [1, 0]], 2) # 2 nodes, 2 colors (possible)
114114
[0, 1]
115-
116115
"""
117116
colored_vertices = [-1] * len(graph)
118117

0 commit comments

Comments
 (0)