13
votes
22answers
822 views
Code-Golf: What is the shortest program that compiles and crashes?
This is a little bit of fun. Can you device the shortest program which compiles but does nothing but immediately crash when executed? Wherefore by "crash" we mean that the program …
15
votes
5answers
749 views
Code Golf: Running Water
The challenge
The shortest code by character count to identify and mark water depressions in the ASCII representation of a land from input.
Input will be an ASCII representation …
23
votes
20answers
1k views
Code Golf: Fractran
The Challenge
Write a program that acts as a Fractran interpreter. The shortest interpreter by character count, in any language, is the winner. Your program must take two inputs: …
2
votes
0answers
108 views
Code Golf: Perfect Tic-Tac-Toe
Given a tic-tac-toe board as input, where the game may already be started:
| |
-+-+-
|X|
-+-+-
| |
Output a tic-tac-toe board with the best possible move for the player whos …
26
votes
19answers
1k views
Code Golf: Sierpinski’s Triangle
The challenge
The shortest code, by character count to output an ASCII representation of Sierpinski's Triangle of N iterations made from the following ASCII triangle:
/\
/__\
…
2
votes
12answers
385 views
Code Golf: Permutations
input: array of unique integers, sorted
output: all permutations. edit: output order is not important, as long as it's correct :-)
example:
[2, 6, 9]
output:
[ [2, 6, 9], [2, …
0
votes
8answers
346 views
Running a fastest-algorithm competition
I'd like to run competitions like code golf competitions, but the winner would have the fastest algorithm, not the smallest code.
One fair way to measure speed of an algorithm is …
39
votes
12answers
1k views
Code Golf: Hourglass
The challenge
The shortest code by character count to output a hourglass according to user input.
Input is composed of two numbers: First number is a greater than 1 integer that …
79
votes
26answers
5k views
Code Golf: Lasers
The challenge
The shortest code by character count to input a 2D representation of a board, and output 'true' or 'false' according to the input.
The board is made out of 4 types …
1
vote
11answers
337 views
oneliner scramble program
It's that time of year again that programmers want to shuffle a list such that no element resides on its original position (at least in the Netherlands, we celebrate Sinterklaas an …
5
votes
20answers
633 views
Insertion Sort Code Challenge
My task for you this time is to implement an insertion sort algorithm. Sure, everyone and his dog can do it; but how easy is it to do in the fewest characters? One must take an ar …
30
votes
13answers
2k views
Code Golf: Spider webs
The challenge
The shortest code by character count to output a spider web with rings equal to user's input.
A spider web is started by reconstructing the center ring:
\_|_/
…
43
votes
13answers
2k views
Code Golf: Playing Cubes
The challenge
The shortest code by character count, that will output playing bricks tower series according to user input.
The input will be a series of numbers (positive, negativ …
323
votes
21answers
20k views
Twitter image encoding challenge
If a picture's worth 1000 words, how much of a picture can you fit in 140 characters?
Note: That's it folks! Bounty deadline is here, and after some tough deliberation, I have dec …
66
votes
162answers
10k views
What is your solution to the FizzBuzz problem?
See here
Write a program that prints the numbers from 1 to 100. But for multiples of three print "Fizz" instead of the number and for the multiples of five print "Buzz". For numbe …
