Search Results

1
vote

Most elegant, amusing or strange code one liners

I don't know why but it has always tickled me when I run across this. my @lines = map ( /:\s+(\S*)\s*$/, grep ( /Name/, <> ));"); …
4
votes

Factorial Algorithms in different languages

Ruby: functional def factorial(n) return 1 if n == 1 n * factorial(n -1) end …