9 lines
175 B
Python
9 lines
175 B
Python
|
from constraintsearch import *
|
||
|
|
||
|
region = ['A', 'B', 'C', 'D', 'E']
|
||
|
colors = ['red', 'blue', 'green', 'yellow', 'white']
|
||
|
|
||
|
cs = ConstraintSearch(None, None)
|
||
|
|
||
|
print(cs.search())
|