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 ...
26
votes
3answers
957 views
Are there any “short tricks” in JavaScript 1.8 that I can use to reduce my golf score? [closed]
I have recently picked up golfing as a pastime. I've been trying to golf with JavaScript, and the amount of time I have spent with JavaScript 1.8 is about zero.
Are there any nifty shortcuts I might ...
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
4answers
859 views
garble function contest
Remember that away message on aim that said how:
Aoccdrnig to a rscheearch at Cmabrigde Uinervtisy, it deosn't mttaer in waht oredr the ltteers in a wrod are, the olny iprmoetnt tihng is taht the ...
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 ...
16
votes
10answers
2k views
How do I program using cat?
In this xkcd comic:
they mention that real programmers use cat. Well, I was asking myself: how could you program using the cat command?
13
votes
6answers
773 views
Code Golf (sort of): a Functional Puzzle
Here's a puzzle: define some higher-order function f such that, using only f and parentheses, you can define the three higher-order functions const, id and bothOn.
Those three functions could be ...
9
votes
5answers
1k views
Smallest Chess Playing Program
I was wondering if anyone knew of a "World's Smallest Chess Program". By this I mean a text based program that can play a game of chess following all the rules (castling, en passent, underpromotion, ...
7
votes
3answers
904 views
Easy code-golf challenges
I am interested in trying a few code-golf problems, but of a fairly easy level as I'm only a year old in terms of programming. Simple things, but that will make me think. I am comfortable in ...
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 ...
5
votes
6answers
2k views
Code Golf: Solve a Maze
Here's an interesting problem to solve in minimal amounts of code. I expect the recursive solutions will be most popular.
We have a maze that's defined as a map of characters, where '=' is a wall, a ...
1
vote
4answers
521 views
Coding brain teaser to update an array (language agnostic)
All,
I need a clever way to implement this algorithm (for work) as quickly and cleanly as possible:
I think I've removed all the language specific issues and boiled it down to this:
I have two ...
0
votes
1answer
240 views
Code Golf: Snake Folding [closed]
As mentioned in this odd video here at about 50 seconds, how many different combinations of the folded snake are there for a given snake of X segments in length.
Here is how it works: A snake ...
0
votes
9answers
818 views
Code Golf: Take 2 inputs (number) and print sum in C
We were trying a few crazy things with c and came up with this question.
Please note that there is nothing important to learn (probably?) from this, but its just for FUN.
What I want is a c program ...
0
votes
4answers
1k views
Shortest-code for prime-calculation
The newspaper for the Computer Science-line at my school (called readme, is's norwegian, page 19) had a fun competition:
Write the shortest possible Java-code for this problem:
Take in an integer ...
-1
votes
3answers
1k views
Solve this PHP puzzle in as few bytes as possible
*EDIT: since some folk's panties are apparently bunching uncomfortably over this, how about just recommending some efficient ways of dealing with similar code? Maybe not specific answers to the ...