We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 326c958 commit 7b5d666Copy full SHA for 7b5d666
src/main/java/com/thealgorithms/backtracking/MColoring.java
@@ -6,13 +6,11 @@
6
import java.util.Queue;
7
import java.util.Set;
8
9
-/**
10
- * @author Bama Charan Chhandogi (https://github.com/BamaCharanChhandogi)
11
- */
12
-
13
/**
14
* Node class represents a graph node. Each node is associated with a color
15
* (initially 1) and contains a set of edges representing its adjacent nodes.
+ *
+ * @author Bama Charan Chhandogi (https://github.com/BamaCharanChhandogi)
16
*/
17
class Node {
18
int color = 1; // Initial color for each node
0 commit comments