15
votes
5answers
757 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 …
-1
votes
1answer
61 views
A puzzle - a program printing its own source
Blast from the past. This is one of the puzzles from my early days:
Can you write a method (a function) which when called outputs its own source - literally including all the quot …
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:
/\
/__\
…
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 …
0
votes
6answers
38 views
Remove Duplicates From File (vs COBOL)
This Cobol question really piqued my interest because of how much effort seemed to be involved in what seems like it would be a simple task.
Some sloppy Python to remove file dup …
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 …
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 …
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 …
62
votes
112answers
13k views
Stack overflow code golf
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 …
31
votes
31answers
4k 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) …
31
votes
29answers
3k 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, …
27
votes
12answers
2k 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 wi …
35
votes
118answers
9k views
Factorial Algorithms in different languages
I want to see all the different ways you can come up with, for a factorial subroutine, or program. The hope is that anyone can come here and see if they might want to learn a new l …
