docs: Various documentation fixes

This commit is contained in:
Panquesito7
2020-06-26 19:40:35 -05:00
parent 3c4625f6d4
commit 6db5bfae8a

View File

@@ -55,15 +55,17 @@ void printSolution(int color[]) {
std::cout << "\n";
}
// driver program to test above function
/**
* Main function
*/
int main() {
/* Create following graph and test whether it is 3 colorable
(3)---(2)
| / |
| / |
| / |
(0)---(1)
*/
// Create following graph and test whether it is 3 colorable
// (3)---(2)
// | / |
// | / |
// | / |
// (0)---(1)
bool graph[V][V] = {
{0, 1, 1, 1},
{1, 0, 1, 0},