Skip to content

Commit 7b5d666

Browse files
committed
Fix javadoc comment
1 parent 326c958 commit 7b5d666

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/main/java/com/thealgorithms/backtracking/MColoring.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,11 @@
66
import java.util.Queue;
77
import java.util.Set;
88

9-
/**
10-
* @author Bama Charan Chhandogi (https://github.com/BamaCharanChhandogi)
11-
*/
12-
139
/**
1410
* Node class represents a graph node. Each node is associated with a color
1511
* (initially 1) and contains a set of edges representing its adjacent nodes.
12+
*
13+
* @author Bama Charan Chhandogi (https://github.com/BamaCharanChhandogi)
1614
*/
1715
class Node {
1816
int color = 1; // Initial color for each node

0 commit comments

Comments
 (0)