From 9da28b0ccc25efff2f3ad774a90511491c9943ff Mon Sep 17 00:00:00 2001 From: Hardik Pawar <97388607+Hardvan@users.noreply.github.com> Date: Tue, 1 Oct 2024 08:21:52 +0530 Subject: [PATCH] Update backtracking/coloring.py Co-authored-by: Christian Clauss --- backtracking/coloring.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backtracking/coloring.py b/backtracking/coloring.py index 497b4cac8..d7282a9e9 100644 --- a/backtracking/coloring.py +++ b/backtracking/coloring.py @@ -21,7 +21,7 @@ def valid_coloring( If all neighbours validate the constraint return True Parameters: - neighbours (list[int]): The list representing which vertices + neighbours: The list representing which vertices are adjacent to the current vertex. 1 indicates an edge between the current vertex and the neighbour.