0
votes
Palindrome Golf
Definitely not the smallest, but I still wanted to add a entry:
sub p{return @_==reverse split//;}
My perl's rusty tho and this is untested.
…
0
votes
Fibonacci Code Golf
Not the shortest, but the fastest at the time of posting. :-)
float f(float n) {
return (pow(1+sqrt(5.0))/2.0),n) - pow(1+sqrt(5.0))/2.0),n)/sqrt(n));
}
…
1
vote
Language showdown: how do you make a system call that returns the stdout output as a string?
In C on Posix conformant systems:
#include <stdio.h>
FILE* stream = popen("/path/to/program", "rw");
fprintf(stream, "foo\n"); /* Use like you would a file stream. */
fclose …
