Challenge: Graph Coloring
Given a graph, color it in such a way that no adjacent graphs are the same color.
We'll cover the following...
Problem Statement
Graph coloring involves finding a way of coloring the vertices of a graph.
Implement a function that finds a way of coloring a graph so that no two adjacent vertices are colored using the same ...