The Zebra Puzzle is a famous logic puzzle also called Einstein's Puzzle or Einstein's Riddle.
The following 15 statements are all known to be true:
- There are five houses.
- The Englishman lives in the red house.
- The Spaniard owns the dog.
- Coffee is drunk in the green house.
- The Ukrainian drinks tea.
- The green house is immediately to the right of the ivory house.
- The Old Gold smoker owns snails.
- Kools are smoked in the yellow house.
- Milk is drunk in the middle house.
- The Norwegian lives in the first house.
- The man who smokes Chesterfields lives in the house next to the man with the fox.
- Kools are smoked in the house next to the house where the horse is kept.
- The Lucky Strike smoker drinks orange juice.
- The Japanese smokes Parliaments.
- The Norwegian lives next to the blue house.
Additionally, each of the five houses is painted a different color, and their inhabitants are of different national extractions, own different pets, drink different beverages and smoke different brands of cigarettes.
Wikipedia - https://en.wikipedia.org/wiki/Zebra_Puzzle
Change the attributes
object to add custom rules and attributes.
const attributes = {
[attributeName]: {
values: [values],
rules: [rules],
},
};
the values array contains the possible values for the attribute. (It needs to be equal to the number of houses)
the rules object contains the rules that need to be satisfied for the attribute.
const rules = {
[ruleNumber]: (houses) => // Your custom rule here,
};