RegEx Crossword
11–20 of 160 posts
Re: RegEx Crossword
#12Any reason why this is implement as a hex instead of the traditional crossword style? There isn't a technical reason why the traditional crossword format can't have clues in the shape of regex right?
Re: RegEx Crossword
#13Any reason why this is implement as a hex instead of the traditional crossword style? There isn't a technical reason why the traditional crossword format can't have clues in the shape of regex right?
Re: RegEx Crossword
#14Any reason why this is implement as a hex instead of the traditional crossword style? There isn't a technical reason why the traditional crossword format can't have clues in the shape of regex right?
Don't think there's a technical reason. I'd previously seen this site linked from here that does it slightly more traditionally: https://regexcrossword.com/
Re: RegEx Crossword
#15Any reason why this is implement as a hex instead of the traditional crossword style? There isn't a technical reason why the traditional crossword format can't have clues in the shape of regex right?
They just went the extra mile to make an special puzzle.
Re: RegEx Crossword
#16Re: RegEx Crossword
#17Re: RegEx Crossword
#18This might be fine for hard mode, but as someone who considers themselves a regexpert it's not very approachable as a first puzzle IMO.
A more gradual introduction to the format would be to give a few clues that give you confidence on specific characters, that then let you lock in some other characters in other hints, and so on.
For instance, replacing `.*H.*V.*G.*` with `.{3}H.*V.*G.*` would go a long way because you could confidently place an `H`. And say that intersected with `(DI|NS|TH|OM)*` on the `H`, you could then place a `T` from the second clue because of what you learned from the first clue.
It could just be that I'm missing something or not as good at regex as I thought, and please let me know if that's the case. Either way though, when I'm trying a new kind of puzzle I'd like to feel like I made some sort of progress after trying for 5-10 minutes, and here 2 chars does not feel like progress.
Re: RegEx Crossword
#19Re: RegEx Crossword
#20(I guess I could PR on github when I get some time later today)