37

An entry in Fortnightly Topic Challenge #36: Twisted Classics 1


Here's a regular word search. Find three twisty things.

[ a - z ] ? b ( f \ ( ) . ( - l * 3 * ] 
| | ( * * - ) a . { 9 } . ( ) d e * + z 
\ \ w f ] f a u l * | e 5 . . f t s | - 
w # ) ) s - z ] 4 2 [ . . { | | e s * a 
] ( r e ) { ) - y e - d | . . 3 + s - [ 
) 1 . - 2 | p * ] [ ) 3 e | ) * [ p ] - 
- 1 \ } \ . ) ) \ ? a u | ] ( l s { ) } 
( . l 2 ( ] . t j ) ( - + | { ? * a 1 n 
( . z ) t . | } ? 0 [ + z ? - 2 ] ) l 0 
* \ / - . ( 4 3 ( ) * z / ] ) ( } \ ) . 
) = c ( ] { + + s - * w [ \ * l | - + { 
. [ ) l . k - z * + t ( ( ) | / r . [ 7 
( { ? s } v * i ) w u 5 ? e 8 ) ) } . } 
u q * ( . o ) . ) ] ) ( + # ? u | . 1 { 
\ ( | p ( a 3 ) \ w ) . i ? | / s 1 3 - 
) . - . - ? c ) w ( ) * { t 3 } { 3 a v 
| | ( ( ) ) o . + - | . ( ? z w * + ? . 
e { { } } + . t - ? ( - * w \ - x * \ w 
} . 3 [ ] { 1 1 } | a a [ ] ] \ - p ? * 
. o } . ) - ? 8 m t o w u . . ( ) * [ -

Words:

twisted
classics
fortnightly
topic
challenge
puzzling
stack
exchange

Hint 1:

The three twisted things may correspond to three colors.

Hint 2:

Try focusing on regions.

Riley
  • 14,424
  • 4
  • 39
  • 77
  • correct me if I am wrong, but it seems like your "regular word search" is corrupted. ;) – micsthepick Jun 18 '18 at 00:12
  • 1
    @micsthepick Looks like a regular word search to me :) – Riley Jun 18 '18 at 00:14
  • 1
    Well, I (in a suitably extended sense of "I") can find all the words, but in trivial boring ways. I can find some of them in more interesting ways, but not all. (In particular, I can't find "puzzling" in a nontrivial way.) And so far I'm at a loss to guess what the three twisty things might be... – Gareth McCaughan Jun 18 '18 at 00:32
  • 1
    Well, I might have found "puzzling", if things can be found backwards. Haven't managed anything else, yet... – Persona Jun 18 '18 at 00:43
  • 16
    Really, Riley? You posted this 46 seconds after FTC #36 officially began! Did the first person at the table get to eat all the food at your house growing up? :) – Chowzen Jun 18 '18 at 00:49
  • Ignoring the trivial versions I found "puzzling", "classics", "stack" (twice) and one almost trivial that matches "twisted" or "topic". – Sleafar Jun 18 '18 at 17:00

2 Answers2

30

This regular word search requires

Regular Expressions

The simplest solution would be

.* which matches any length of any characters and occurs a number of places in the puzzle

Here's an example of such a solution

.*

But, that's no fun and seems a bit like cheating. So, let's restrict it by requiring it to only match one of the words we're looking for.

WIP

Honorable mentions (matching multiple):

(t|u).+
t.+
\u(.)*
(q|.)+
[a-z]*
(.)*

While a couple words have yet to be found in a unique way, @Sleafar pointed out a particular pattern that can be made by including the ones that match multiples:

logo

Which would make the "three twisty things"

The 3 colors being twisted around each other
WIP Thoughts:
- The logo goes from left edge to right edge, but there's an extra row on top and 2 rows on bottom, perhaps there's something in there I missed.
- Perhaps there is some kind of jagged path (like A1->B2->A3->B4...)
- Maybe it involves wrapping around, so left edge meets right and top meets bottom

David Starkey
  • 6,639
  • 1
  • 24
  • 62
7

The three twisty things are:

plot, Oliver, and puzzles.

These can be found in the pattern from David Starkeys answer as follows:

For each of the colours in the puzzling SE logo, we take the letters in the corresponding parts of the grid as follows:
enter image description here
For the letters in the red part anagram to "plot", the letters in the yellow part anagram to "oliver", and the letters in the green part anagram to "puzzles".

These things are indeed twisty, as

we can combine "plot" and "Oliver" with twist to get "plot twist" and "Oliver twist". Puzzles are of course also twisty, especially during this Fortnightly Topic Challenge!

Reinier
  • 5,147
  • 21
  • 33