up vote 39 down vote favorite
72
share [g+] share [fb]

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

link
feedback

locked by Robert Harvey Sep 19 '11 at 17:07

This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. More info: FAQ.

closed as off topic by 0A0D, Jon, genesis, Robert Harvey Sep 19 '11 at 17:06

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

23 Answers

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.

link
feedback

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

link
+1 for Python Challenge. And you don't have to resolve it in Python, I did it in C#. – Nico Nov 28 '08 at 12:36
feedback

http://www.topcoder.com/

link
feedback

SPOJ

link
feedback

'Hard' programming interview questions

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

link
feedback

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.

link
+1 for ACM ICPC – phimuemue Aug 31 '10 at 13:20
+1 for ACM ICPC. – user183037 Feb 24 '11 at 22:26
feedback

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.

link
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. – Wesley Aug 31 '10 at 14:50
1  
@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 Aug 31 '10 at 14:59
feedback

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

link
feedback

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).

link
feedback

Java Programmers:

javabat

java black belt

link
feedback

I recently stumbled upon some neat programming puzzles. They may require a facebook account however: http://www.facebook.com/puzzles

The problems seems to be very practical and described in a manner which doesn't require any math and have different ranges of difficulty.

link
feedback

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!

link
1  
How about upvoting an answer instead of repeating it? – S.Lott Nov 28 '08 at 12:46
4  
@S.Lott read edit, i was only seconds after RoBorg – dove Nov 28 '08 at 13:43
feedback

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

link
feedback

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

link
feedback

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).

link
feedback

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

link
feedback

My Tech Interviews

link
feedback

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

link
feedback

http://rubykoans.com

Learn ruby via failing unit tests.

link
feedback

You might be interested in careercup.com and algorithmist.com.

link
Welcome to StackOverflow. You can create clickable URLs by highlighting the text you want to show up in the answer, then click on the 'globe' above the editing box, and typing the URL. This gets the notation right - and clickable URLs are much more helpful than non-clickable ones. – Jonathan Leffler Aug 28 '11 at 0:33
feedback

Try this; you can get lot good programming puzzles with answers.

techinterviewpuzzles.com

link
Welcome to StackOverflow. You can create clickable URLs by highlighting the text you want to show up in the answer, then click on the 'globe' above the editing box, and typing the URL. This gets the notation right - and clickable URLs are much more helpful than non-clickable ones. – Jonathan Leffler Aug 28 '11 at 0:34
feedback

There are the past ACM/ICPC problems.

link
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.