Comment on Python code to solve xkcd 1313 by Peter NorvigparentComments−andreasvc12yIf you're after hashes you could just match a string of hexadecimal digits of a specific length (such as [0-9a-f]{16} ); much easier to define than English text.−tlarkworthy12ydid not think of that!might be interesting to see how that stacks up against the other idea thread.
Comments
If you're after hashes you could just match a string of hexadecimal digits of a specific length (such as [0-9a-f]{16} ); much easier to define than English text.
did not think of that!
might be interesting to see how that stacks up against the other idea thread.