1
vote
Finding the phone numbers in 50,000 HTML pages
i love doing these little problems, can't help myself.
not sure if it was worth doing though since it's very similar to the java answer.
private readonly Regex phoneNumExp = …
1
vote
Best way to reduce sequences in an array of strings
Here's C# app i wrote that solves this problem.
takes
aabccacdcd
outputs
abcacd
Probably looks pretty messy, took me a bit …
