vote up 0 vote down star
1

What are some interesting programming exercises/problems?

Also include the language (if relevant).

flag

show 1 more comment

closed as exact duplicate by S.Lott Jan 11 at 2:59

7 Answers

vote up 4 vote down check

There are a number of great problems at Project Euler. In addition to providing interesting problems, the site will track your scores and progress.

link|flag
vote up 1 vote down

Programming Challenges

http://www.amazon.com/Programming-Challenges-Steven-S-Skiena/dp/0387001638

link|flag
cool! didn't even think about programming challenges books (should have though ><) – koldfyre Jan 11 at 2:45
C, C++, Pascal, Java mainly btw – koldfyre Jan 11 at 2:46
vote up 1 vote down

PythonChallenge.com

More puzzle oriented - you use the pictures and other info on page (aka view source) to solve your way to the next html puzzle page.

link|flag
vote up 1 vote down

Maybe too simple, but I enjoyed working through Tower of Hanoi

link|flag
no, its a classic problem - surprisingly i haven't even solved it yet – koldfyre Jan 11 at 2:47
vote up 1 vote down

Not entirely sure if this is the sort of thing you're after, but the following page has15 Exercises for Learning a new Programming Language

link|flag
vote up 1 vote down

It depends on what you're trying to accomplish in your exercises. i.e. introducing high-school students to programming or keeping an experienced programmer sharp and on his game.

To help me understand a new language(loops, lists, structures, etc.) I always try to build a "deck of cards" library. I'm a huge fan of the game Blackjack. It has simple rules and can easily be implemented in almost any language.

I already have a strong grasp of programming concepts, so this is always the best challenge for me to understand the basics of a new language that I want to try out. But to do a great game of 21, I need a good deck of cards. And possibly, a pizza.

link|flag
vote up 1 vote down

Try writing an interpreter for a simple programming language, such as Brainf*ck if you've never done anything like that before.

link|flag

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