Tagged Questions
160
votes
131answers
22k views
Stack overflow code golf [closed]
To commemorate the public launch of Stack Overflow, what's the shortest code to cause a stack overflow? Any language welcome.
ETA: Just to be clear on this question, seeing as I'm an occasional ...
81
votes
14answers
4k views
Code Golf: Playing Tetris [closed]
The basics:
Consider the following tetrominoes and empty playing field:
0123456789
I O Z T L S J [ ]
...
49
votes
29answers
4k views
Code golf: Digital clock
Possible Duplicate:
Code Golf: Seven Segments
The task: Write the smallest possible program (least number of characters) that takes input in the hh:mm format and outputs this as a digital ...
48
votes
16answers
3k views
Code Golf: Connecting the dots
You may remember these drawings from when you were a child, but now it's time to let the computer draw them (in full ascii splendour). Have fun!
Description:
The input are multiple lines (terminated ...
46
votes
23answers
3k views
Code Golf: Triforce
This is inspired by/taken from this thread: http://www.allegro.cc/forums/thread/603383
The Problem
Assume the user gives you a numeric input ranging from 1 to 7. Input should be taken from the ...
38
votes
15answers
2k views
Code golf: the Mandelbrot set
Usual rules for the code golf. Here is an implementation in python as an example
from PIL import Image
im = Image.new("RGB", (300,300))
for i in xrange(300):
print "i = ",i
for j in ...
38
votes
18answers
7k views
The Skyline Problem
I just came across this little problem on UVA's Online Judge and thought, that it may be a good candidate for a little code-golf.
The problem:
You are to design a program to assist an architect in ...
25
votes
16answers
2k views
Code Golf: 1x1 black pixel
Recently, I used my favorite image editor to make a 1x1 black pixel (which can come in handy when you want to draw solid boxes in HTML cheaply). Even though I made it a monochrome PNG, it came out to ...
25
votes
46answers
6k views
Code Golf: Print the entire “12 Days of Christmas” song in the fewest lines of code
Print all 12 verses of the popular holiday song.
By 12 verses I mean the repetition of each line as is sung in the song, ie
Verse One:
On the first day of Christmas my true love gave to me
a ...
21
votes
9answers
1k views
Code Golf: Phone Number to Words
Guidelines for code-golf on SO
We've all seen phone numbers that are put into words: 1-800-BUY-MORE, etc.
What is the shortest amount of code you can write that will produce all the possible ...
20
votes
35answers
4k views
Fibonacci Code Golf
Generate the Fibonacci sequence in the fewest amount of characters possible. Any language is OK, except for one that you define with one operator, f, which prints the Fibonacci numbers.
Starting ...
19
votes
63answers
5k views
Create, sort, and print a list of 100 random ints in the fewest chars of code
What is the least amount of code you can write to create, sort (ascending), and print a list of 100 random positive integers? By least amount of code I mean characters contained in the entire source ...
17
votes
31answers
9k views
Finding closest match in collection of numbers
So I got asked today what was the best way to find the closes match within a collection.
For example, you've got an array like this:
1, 3, 8, 10, 13, ...
What number is closest to 4?
Collection ...
17
votes
31answers
3k views
Code Golf New Year Edition - Integer to Roman Numeral
Write a program that take a single command line argument N and prints out the corresponding Roman Numeral.
Eg N = 2009 should print MMIX.
Let's say this should work for 0 < N < 3000.
(Had fun ...
7
votes
32answers
2k views
Code Golf: How do I write the shortest character mapping program?
I learned a lot about various languages last time I did one of these, so I figured I'd submit another. Community Wiki of course...
All programming languages are acceptable. The goal is to create ...