views:

2307

answers:

19

Programing puzzles can be a great way to practice your skills and kill time between projects. What sources do you use for programing puzzles?

+43  A: 

Try Project Euler.

Project Euler is a series of challenging mathematical/computer programming problems that will require more than just mathematical insights to solve. Although mathematics will help you arrive at elegant and efficient methods, the use of a computer and programming skills will be required to solve most problems.

Greg
+12  A: 

Ruby: http://rubyquiz.com/ Python: http://www.pythonchallenge.com/

danimajo
+1 for Python Challenge. And you don't have to resolve it in Python, I did it in C#.
Nico
+2  A: 

as mentioned before here, project euler is hard to beat

edit: by before i meant in other questions, but now see someone was quicker on the type!

dove
How about upvoting an answer instead of repeating it?
S.Lott
@S.Lott read edit, i was only seconds after RoBorg
dove
+6  A: 

'Hard' programming interview questions

http://everything2.com/title/hard%2520interview%2520questions

BraveSirFoobar
+3  A: 

http://icpcres.ecs.baylor.edu/onlinejudge/

Sunil
+1  A: 

TechInterview is quite good. Here's the discussion forum.

RoadWarrior
+10  A: 

http://www.topcoder.com/

Tomas Pajonk
+2  A: 

Java Programmers:

javabat

java black belt

Chrys
+4  A: 

I found that the Python Challenge was a good way to learn Python. The puzzles start out very easy but ramp up in difficulty fairly quickly. They're set up in a good sequence to guide you to explore the Python libraries.

Bill the Lizard
Pointing out that you can solve most of the puzzles without Python, if you prefer your favorite language. Only puzzles 5 and 23 require Python.
Wez
@KeyboardMonkey: That's true, but some of the clues also have an extreme Python slant. I don't remember the number, but one clue requires that you know that object serialization is done with the pickle library in Python.
Bill the Lizard
+5  A: 

University of waterloo's programming contest puzzles are quite good. Definitely recommended for college students.

You can also search their archive for Past Waterloo Contests. Also check out previous ACM ICPC problem set archive.

Mahesh
+1 for ACM ICPC
phimuemue
A: 

Project Eureka has some interesting programming puzzles, however it is not limited to programming, there are other interesting categories as well (like ligic/probability puzzles).

uzurpatorul
A: 

Programming Praxis has some pretty sweet programming exercises, with official solutions in Scheme. Visitors also posts solutions, notably in Haskell.

namin
+4  A: 

SPOJ

st0le
+1  A: 

CodeChef, especially for Indians (because of the competitions).

Swaroop C H
A: 

My Tech Interviews

Dollarmani
A: 

Another Good programming puzzle website. You must read it..

puzzle
A: 

http://rubykoans.com

Learn ruby via failing unit tests.

Andy_Vulhop
+2  A: 

The Google Code Jam is missing!

Interesting challenges - Start with "Qualification Round" (bottom to top), after, it gets pretty tricky!

An originality of Google code Jam: you don't need to test your program remotely. Google provides you with sets of data (short / long) that you apply to your program, thus any language is accepted.

The validity of your program depends on its output (sent to Google).

ring0