Earlier quoted context omitted.
The "I" can't be "T" because the regex on the bottom (.(\sSAI).*) forces it to be "I".
No in this case the regex on the bottom only applies the . to the square in question while the \sSAI in question applies to the second square. It seems that it could be a I or a T.
Regex Crossword
91–100 of 115 posts
Re: Regex Crossword
#92These crosswords are NP-hard! D: Here's a short encoding of 3SAT: Alphabet: [01] Number of variables: N Columns: one for each clause, i.e.: r/.0...|..1..|....1/ (-x2 V x3 V x5) They're disjunctions of three regexps of length N. Each alternative fixes one positional variable to either 0 or 1, and ignores the rest. Rows: one for each variable, forcing it to be single-valued across the clauses: r/0+|1+/
Re: Regex Crossword
#93Earlier quoted context omitted.
The MIT puzzle (from the 2013 Mystery Hunt) was called "A Regular Crossword" and its credit says "Dan Gulotta, based on an idea by Palmer Mebane". (Just so it's not credited to MIT in general; each year's Mystery Hunt is written by a specific puzzle team, and indeed each puzzle is written by specific puzzlers!)
This new site is super-awesome and challenging, but a great thing about the hexagonal grid in "A Regular Crossword" was that each hexagon was constrained by three intersecting regular expressions rather than two. That meant that the constraints could be trickier or vaguer in some ways, and comparatively more dependent on the sequence of elements within a regular expression rather than on the process of elimination be…
Re: Regex Crossword
#94My main problem with this is telling the difference between O and 0, the clue O's look more like 0 so I have to copy paste them. (Although I don't think I've had any numbers required for solutions yet).
Re: Regex Crossword
#95How about you save my progress in a cookie? You might find this hard to believe, but I don't have a Facebook account.
Re: Regex Crossword
#96I'd be happy to donate more than whatever Facebook pays you for every newly registered account if you would implement a simpler method.
Re: Regex Crossword
#97I want to be able to return later, but it's a bit too much to register a Facebook account (which you presumably can't do with a throwaway address?). I'd be happy to donate more than whatever Facebook pays you for every newly registered account if you would implement a simpler method.
Re: Regex Crossword
#98I want to be able to return later, but it's a bit too much to register a Facebook account (which you presumably can't do with a throwaway address?). I'd be happy to donate more than whatever Facebook pays you for every newly registered account if you would implement a simpler method.
How is this too much? FB reg is the simplest way possible online to create an account anywhere.
Re: Regex Crossword
#99Re: Regex Crossword
#100What does it mean when a reg ex ends with a `\1` (backslash 1) as in this example third beginner puzzle? (.)+\1 http://regexcrossword.com/challenges/beginner/puzzles/3