Logic Puzzles
Posted by philhassey (twitter: @philhassey)
December 12th, 2009 5:30 pm
So, I’ve made a python-brute-force logic puzzle generator.
('island', 'bonaire', 'port', 'north port', True)
('island', 'antigua', 'threat', 'hurricane', True)
('port', 'west port', 'threat', 'cannibals', True)
('island', 'tobago', 'treasure', 'rubies', True)
('treasure', 'pearls', 'threat', 'kraken', True)
('treasure', 'saphires', 'marker', 'rock', True)
('island', 'jamaica', 'treasure', 'gold', True)
('island', 'jamaica', 'port', 'south port', True)
('island', 'tobago', 'port', 'west port', True)
('island', 'tobago', 'marker', 'skull', True)
('treasure', 'pearls', 'marker', 'waterfall', True)
('port', 'east port', 'treasure', 'saphires', True)
.. Which could be solved using one of these grid things.
The question is, can I turn this into a playable game?
-Phil