From The Sunday Times, 8th April 2012 [link] [link]
I took the letters A, E, E, R, S and T and wrote down the long list of all possible different combinations of them. So, in alphabetical order, my list was AEERST, AERTS, …, EASTER, …, TEASER, …, TSREEA. I then assigned each of the letters a different odd digit, turning my list into a list of numbers. Surprisingly, the grand total of my list of numbers contained no odd digit.
What is E+A+S+T+E+R?
This completes the archive of Teaser puzzles from 2012, so there is now a complete archive of puzzles (and solutions) from Teaser 2569 (December 2011) to the most recent puzzle Teaser 3256 (February 2025), along with many earlier puzzles. There are another 21 puzzles to post from 2011 before all puzzles from the 2020 book are posted.
Between S2T2 and Enigmatic Code there are now 3577 puzzles available.
[teaser2585]
Jim Randell 9:50 am on 25 February 2025 Permalink |
Here is a solution using the [[
SubstitutedExpression]] solver from the enigma.py library.It runs in 80ms. (And the internal runtime of the generated program is just 53µs).
Solution: 10 of the black cards have a cross on them.
There are 4 possible arrangements, that can be summarised as follows:
8 of the crosses are marked X, and the remaining 2 crosses appear in squares marked a and b.
LikeLike
ruudvanderham 12:26 pm on 1 March 2025 Permalink |
import itertools def s(*args): return sum(a[arg] for arg in args) for a in itertools.product((0, 1), repeat=18): if ( s(2, 5) != 0 and s(0, 3, 6) == 1 and s(1, 3, 4, 7) > 2 and s(2, 4, 5, 8) < 2 and s(4, 7, 8, 10) != 1 and s(8, 10, 11, 14) > 1 and s(9, 12, 13, 15) > 2 and s(10, 13, 14, 16) != 3 and s(12, 15) != 2 and s(14, 16, 17) == 1 ): print(a, sum(a))LikeLike