couleurs, Calculabilité & décidablité

 avatar
unknown
python
a year ago
92 B
4
Indexable
def nbMinimalCouleurs(graphe):
c = 1
while not colorationPossible(graphe,c):
c += 1
return c
Editor is loading...
Leave a Comment