0
votes
What is your solution to the FizzBuzz problem?
Here's one I did a while ago in Haskell (generalized & should run very quick -- no arithmetic is performed after the initial setup):
gizzabuzz pairs combiner = zipWith ($) (cycl …
2
votes
Efficiently get sorted sums of a sorted list
If you write out the sums like this:
1 4 5 6 8 9
---------------
2 5 6 7 9 10
8 9 10 12 13
10 11 13 14
12 14 15
16 17
18
…
7
votes
What would be a globally accepted regular expression to match e-mail addresses
It is impossible to do so in a pure regex. Regexen cannot match nested parentheses, which the full RFC spec requires. (The latest RFC on this matter is RFC5322, only released a few months ago.) …
