Skip to content

AliAbbasifard/Map-Coloring

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Map-Coloring

CSP map coloring problem. give some color and da daaa


Map

X: [A, B, C]
A: [X, K]
B: [D, X]
C: [X]
Z: [K]
K: [A, Z]
F: []
D: [B, G]
G: [D]

Colors #f03c15 #c5f015 #1589F0

colors = ['RED', 'GREEN'] 

Result

{('A', True): [('X', 'RED'), ('K', 'RED')],
 ('B', True): [('X', 'RED'), ('D', 'RED')],
 ('C', True): [('X', 'RED')],
 ('D', True): [('B', 'GREEN'), ('G', 'GREEN')],
 ('F', True): ['Any Color'],
 ('G', True): [('D', 'RED')],
 ('K', True): [('A', 'GREEN'), ('Z', 'GREEN')],
 ('X', True): [('B', 'GREEN'), ('A', 'GREEN'), ('C', 'GREEN')],
 ('Z', True): [('K', 'RED')]}

Attention Please :)

I do not filter it to just show the cities and colors. How do I stop being so goddamn lazy???