Open jimgoo opened 9 years ago
See line 126 of graph.py:
def number_of_nodes(self): "Returns the number of nodes in the graph" return order()
should be
def number_of_nodes(self): "Returns the number of nodes in the graph" return self.order()
Cool project!
See line 126 of graph.py:
should be
Cool project!