Tagged Questions
35
votes
23answers
3k views
Code-golf: generate pascal's triangle
Generate a list of lists (or print, I don't mind) a Pascal's Triangle of size N with the least lines of code possible!
Here goes my attempt (118 characters in python 2.6 using a trick):
...
34
votes
4answers
2k views
Code Golf: Countdown Number Game
Challenge
Here is the task, inspired by the well-known British TV game show Countdown. The challenge should be pretty clear even without any knowledge of the game, but feel free to ask for ...
20
votes
14answers
948 views
Code Golf - Generate nearby page numbers based on the current page
The challenge is to create an algorithm for generating a specifically-sized subset of numbers in a sequence based on the current position in that sequence.
While navigating through the many pages of ...
18
votes
17answers
2k views
Code Golf: Gray Code
The Challenge
The shortest program by character count that outputs the n-bit Gray Code. n will be an arbitrary number smaller than 1000100000 (due to user suggestions) that is taken from standard ...
17
votes
14answers
1k views
Code Golf: Validate Sudoku Grid
Introduction
A valid Sudoku grid is filled with numbers 1 to 9, with no number occurring more than once in each sub-block of 9, row or column. Read this article for further details if you're ...
15
votes
6answers
915 views
CodeGolf: Brothers
I just finished participating in the 2009 ACM ICPC Programming Conest in the Latinamerican Finals. These questions were for Brazil, Bolivia, Chile, etc.
My team and I could only finish two questions ...
7
votes
25answers
3k views
Code golf: combining multiple sorted lists into a single sorted list
Implement an algorithm to merge an arbitrary number of sorted lists into one sorted list. The aim is to create the smallest working programme, in whatever language you like.
For example:
input: ...
2
votes
0answers
301 views
Code Golf: Determining the winner of a Chess game [closed]
Migrated to http://codegolf.stackexchange.com/questions/3727/determining-the-winner-of-a-chess-game.
Challenge
Being someone who plays far too much chess in his spare time, I thought I'd set a ...
1
vote
10answers
725 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 to use a neutral ...
1
vote
4answers
528 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 ...
-4
votes
1answer
479 views
Coding a daily horoscope algorithm… ! [closed]
I have to code a daily horoscope for the 12 zodiac signs, it needs to be self-sustained (no external ressources), quite randomized but fixed by zodiac sign for each day.
I need to extract three ...