0
votes
2answers
562 views
Code golf: Diffie-Hellman key exchange
Back in the ITAR era, there was a popular sig that performed Diffie-Hellman key exchange:
#!/usr/bin/pe …
1
vote
Code Golf: Print the entire “12 Days of Christmas” song in the fewest lines of code.
423 bytes with Lingua::EN::Number:
use Lingua::EN::Numbers qw/num2en num2en_ordinal/;
@l=map{($i++?num2en($i):'a')." $_"}split/\n/,<<"";
partridge in a pear tree
turtle doves, …
7
votes
Code Golf: Factorials
Not the shortest, but certainly the least appropriate technique: C++ templates to comput …
1
vote
Code Golf: How do I write the shortest character mapping program?
If you change the format of the input slightly, this is a direct use of the tr program:
echo EncodeMe | tr eMcnEo …
