Analysis of The Global Marketplace | ![]() |
---|
This three-star logic puzzle has 3 noun types, 6 nouns per type, 7 links, 11 facts, and no rules.
It needs 147 marks and 3 grids.
This puzzle has more links than most, but all of the links can be defined using functions in the Link
class. The links you need to define are given below.
const after = puzzle.addLink("after" , days, Link.getIsMoreThan()); const oneBefore = puzzle.addLink("the day before" , days, Link.getIsLessBy(1)); const twoBefore = puzzle.addLink("two days before", days, Link.getIsLessBy(2)); const oneAfter = puzzle.addLink("the day after" , days, Link.getIsMoreBy(1)); const fiveAfter = puzzle.addLink("five days after", days, Link.getIsMoreBy(5));
where days
is the noun type for the days of the week: Monday, Tuesday, ..., Sunday.