Driver code
| 71 | |
| 72 | // Driver code |
| 73 | int main() |
| 74 | { |
| 75 | int G[][V] = { { 0, 1, 0, 1 }, |
| 76 | { 1, 0, 1, 0 }, |
| 77 | { 0, 1, 0, 1 }, |
| 78 | { 1, 0, 1, 0 } }; |
| 79 | |
| 80 | isBipartite(G) ? cout << "Yes" : cout << "No"; |
| 81 | return 0; |
| 82 | } |
nothing calls this directly
no test coverage detected