for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
from pyalgs.data_structures.graphs.graph import Graph
def create_graph():
g = Graph(6)
g.add_edge(0, 5)
g.add_edge(2, 4)
g.add_edge(2, 3)
g.add_edge(1, 2)
g.add_edge(0, 1)
g.add_edge(3, 4)
g.add_edge(3, 5)
g.add_edge(0, 2)
return g