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 ...
145
votes
57answers
14k views
Code golf: Word frequency chart
The challenge:
Build an ASCII chart of the most commonly used words in a given text.
The rules:
Only accept a-z and A-Z (alphabetic characters) as part of a word.
Ignore casing (She == she for ...
136
votes
28answers
8k 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 of tiles:
# - A ...
85
votes
22answers
5k views
Code Golf: Piano
The challenge
The shortest code by character count to output a part of a piano keyboard starting from input note in a given length.
Input will be composed of a note ([ACDFG]#|[A-G]) to start ...
84
votes
24answers
5k views
Code Golf - π day
The Challenge
Guidelines for code-golf on SO
The shortest code by character count to display a representation of a circle of radius R using the *character, followed by an approximation of π.
Input ...
83
votes
30answers
5k views
Code Golf: Four is magic
The puzzle
A little puzzle I heard while I was in high school went something like this...
The questioner would ask me to give him a number;
On hearing the number, the questioner would do some sort ...
83
votes
69answers
5k views
Code Golf: Collatz Conjecture
Inspired by http://xkcd.com/710/ here is a code golf for it.
The Challenge
Given a positive integer greater than 0, print out the hailstone sequence for that number.
The Hailstone Sequence
See ...
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 [ ]
...
74
votes
66answers
52k views
Code Golf: Numeric equivalent of an Excel column name
The challenge
The shortest code by character count that will output the numeric equivalent of an Excel column string.
For example, the A column is 1, B is 2, so on and so forth. Once you hit Z, the ...
64
votes
22answers
5k views
Code Golf: Conway's Game of Life
The Challenge: Write the shortest program that implements John H. Conway's Game of Life cellular automaton. [link]
EDIT: After about a week of competition, I have selected a victor: pdehaan, for ...
63
votes
14answers
3k views
Code Golf: New Year's Fireworks [closed]
The year 2009 is coming to an end, and with the economy and all, we'll save our money and instead of buying expensive fireworks, we'll celebrate in ASCII art this year.
The challenge
Given a set of ...
56
votes
13answers
3k 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, negative and zero) that ...
55
votes
32answers
9k views
Code Golf: Morse code
The challenge
The shortest code by character count, that will input a string using only alphabetical characters (upper and lower case), numbers, commas, periods and question mark, and returns a ...
52
votes
4answers
2k 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 of a landscape, ...
51
votes
13answers
2k views
Code Golf: Hourglass
The challenge
The shortest code by character count to output an hourglass according to user input.
Input is composed of two numbers: First number is a greater than 1 integer that represents the ...
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
40answers
3k views
Code Golf: Morris Sequence
The Challenge
The shortest code by character count that will output the Morris Number Sequence. The Morris Number Sequence, also known as the Look-and-say sequence is a sequence of numbers that ...
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 ...
47
votes
7answers
2k views
Code Golf: Regex parser
The goal
Today's Code Golf challenge is to create a regex parser in as few characters as possible.
The syntax
No, I'm not asking you to match Perl-style regular expressions. There's already a very ...
46
votes
33answers
4k views
Code Golf: Happy Primes!
It's Sunday, time for a round of code golf!
Challenge
Write the shortest source code by character count to determine if an input number is a "happy prime", "sad prime", "happy non-prime", or "sad ...
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 ...
40
votes
35answers
3k views
Code Golf: Tic Tac Toe
Post your shortest code, by character count, to check if a player has won, and if so, which.
Assume you have an integer array in a variable b (board), which holds the Tic Tac Toe board, and the moves ...
40
votes
32answers
5k views
Code Golf: The wave
The challenge
The shortest code by character count to generate a wave from the input string.
A wave is generated by elevating (line-1) a higher character, and degrading (line+1) a lower character. ...
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 ...
37
votes
14answers
2k views
Code Golf - Banner Generation
When thanking someone, you don't want to just send them an e-mail saying "Thanks!", you want to have something FLASHY:
Input: THANKS!!
Output:
TTT H H AAA N N K K SSS !!! !!!
T H H A A NNN K K S ...
36
votes
15answers
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:
\_|_/
_/ \_
\___/
...
36
votes
22answers
6k views
Code Golf: Number to Words
The code golf series seem to be fairly popular. I ran across some code that converts a number to its word representation. Some examples would be (powers of 2 for programming fun):
2 -> Two
1024 -> ...
35
votes
12answers
3k views
Code Golf: Musical Notes
The challenge
The shortest code by character count, that will output musical notation based on user input.
Input will be composed of a series of letters and numbers - letters will represent the ...
34
votes
19answers
3k 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:
/\
/__\
Input is a single ...
34
votes
26answers
3k views
Code Golf: Seven Segments
The challenge
The shortest code by character count to generate seven segment display representation of a given hex number.
Input
Input is made out of digits [0-9] and hex characters in both lower ...
31
votes
14answers
2k views
Code Golf: Beehive
The challenge
The shortest code by character count that will generate a beehive from user input.
A beehive is defined a a grid of hexagons in a size inputted by the user as two positive numbers ...
29
votes
50answers
4k views
Palindrome Golf
The goal: Any language. The smallest function which will return whether a string is a palindrome. Here is mine in Python:
R=lambda s:all(a==b for a,b in zip(s,reversed(s)))
50 characters.
The ...
27
votes
18answers
2k views
Code Golf: Ulam Spiral
The Challenge
The shortest code by character count to output Ulam's spiral with a spiral size given by user input.
Ulam's spiral is one method to map prime numbers. The spiral starts from the number ...
26
votes
9answers
2k views
Code Golf: Code 39 Bar Code
The challenge
The shortest code by character count to draw an ASCII representation of a Code 39 bar code.
Wikipedia article about Code 39: http://en.wikipedia.org/wiki/Code_39
Input
The input ...
26
votes
8answers
1k views
Code-Golf: Friendly Number Abbreviator
Based on this question: Is there a way to round numbers into a friendly format?
THE CHALLENGE - UPDATED! (removed hundreds abbreviation from spec)
The shortest code by character count that will ...
26
votes
9answers
1k views
Code Golf: Diamond Blackjack
The challenge
The shortest code by character count to output a best-case blackjack hand from the list of number-cards given.
Input is a list of numbers from 1 to 10 (inclusive) separated by space.
...
25
votes
14answers
1k views
Code Golf: Calculate Orthodox Easter date
The Challenge
Calculate the Date of the Greek Orthodox Easter (http://www.timeanddate.com/holidays/us/orthodox-easter-day) Sunday in a given Year (1900-2100) using the least amount of characters.
...
25
votes
4answers
2k views
Code Golf: 2D Platformer
The Challenge
Reach the end of the level!
Bonus points if you hit each of the (C)oin blocks exactly 2 times.
Disallowed
Hard coding the command sequence in any way.
Your favorite "One ...
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 ...
24
votes
6answers
1k views
Code Golf: draw ascii art stars
Since this week noone has posted a code-golf challenge, I'll give it a try. I do it so you can do something other than playing with swords during those long compile cycles.
The challenge:
Draw ASCII ...
24
votes
7answers
2k views
Code Golf: Word Search Solver
Note: This is my first Code Golf challenge/question, so I might not be using the correct format below. I'm not really sure how to tag this particular question, and should this be community wiki? ...
24
votes
46answers
8k views
Code Golf: Leibniz formula for Pi
I recently posted one of my favourite interview whiteboard coding questions in "What's your more controversial programming opinion", which is to write a function that computes Pi using the Leibniz ...
23
votes
15answers
2k views
Code Golf: Pig Latin
Challenge:
Take a sentence of input of any length and convert all the words in that sentence to pig latin. If you do not know what pig latin is please read Wikipedia: Pig Latin.
Specifications:
...
23
votes
10answers
1k views
Code Golf: Zigzag pattern scanning
The Challenge
The shortest code by character count that takes a single input integer N (N >= 3) and returns an array of indices that when iterated would traverse an NxN matrix according to the JPEG ...
23
votes
10answers
1k views
Code Golf: Easter Spiral
What's more appropriate than a Spiral for Easter Code Golf sessions? Well, I guess almost anything.
The Challenge
The shortest code by character count to display a nice ASCII Spiral made of ...
23
votes
12answers
2k views
Code Golf: Lights out!
The challenge
The shortest code by character count to solve the input lights out board.
The lights out board is a 2d square grid of varying size composed of two characters - . for a light that is ...
22
votes
12answers
1k views
Code Golf: Diamond Pattern
The challenge
The shortest code by character count to output a a pattern of diamonds according to the input.
The input is composed of 3 positive numbers representing the size of the diamond and the ...
22
votes
6answers
1k views
Code Golf: Ghost Leg
The challenge
The shortest code by character count that will output the numeric solution, given a number and a valid string pattern, using the Ghost Leg method.
Examples
Input: 3,
"| | | | | | | |
...