0
votes
Create, sort, and print a list of 100 random ints in the fewest chars of code
Pike
void main() {
array a=({});
while (sizeof(a)<100) a+=({random(1<<30)});
sort(a);
foreach (a, int b) write( …
1
vote
Code Golf: How do I write the shortest character mapping program?
Javascript
I hope you don't mind this example in javascript, compatible with firefox, chrome and opera but not IE because of the way it accesses the elements of a string.
//102 ch …
0
votes
Code Golf Christmas Edition: How to print out a Christmas tree of height N
Language: Pike
101 Relevant characters
int main (int c, array a) {
int n=(int)a[1], i,l;
for(;i<=n; l = ++i …
1
vote
Code Golf New Year Edition - Integer to Roman Numeral
Pike
60 characters, valid for 0 to 10000:
int main (int c …
