vote up 12 vote down star
18

I can not seem to find this exactly as a post, but what I am looking for is a list of exercises to help me get better at programming. Like Fibonacci sequences, temperature conversions, etc. A website would be great. Thanks for any help.

flag

60% accept rate

14 Answers

vote up 6 vote down check

http://www.cs.clemson.edu/~steve/Papers/GoodProblems.pdf

link|flag
vote up 15 vote down

There are a lot of good more mathematical, but still require programming techniques, problems at Project Euler. http://projecteuler.net/

link|flag
vote up 5 vote down

The game of life is a good one

link|flag
This is a fun exercise but it forces you to write some GUI code, which can get complicated in some languages. I'd leave this one for "phase 2," after you're already familiar with the basic language concepts and are ready to start learning libraries. – Outlaw Programmer Mar 3 at 4:14
Not necessarily. You could write a single pass of Life that takes in an array representing the current state, and outputs an array representing the new state. For example, a file using * to represent live cells. – lacqui Mar 3 at 4:27
vote up 5 vote down

I agree on Project Euler, but you may also want to look into the Code Katas.

link|flag
vote up 2 vote down

I believe this link may be interesting to you. (lots of text, so I didn't want to cram it all down here)

link|flag
vote up 2 vote down

When I was looking into learning python the python challenge looked like a fun and interesting way to learn.

link|flag
vote up 1 vote down

I would say to re-implement the last "real life" project (or at least a subset of it).

That way you already know the problem domain and what works and what doesn't from a logic perspective and can focus on learning the new language. Plus, it will more quickly drive you to see how the two languages compare and contrast by seeing what is easier in one or the other.

link|flag
vote up 1 vote down

These 15 exercises may also be good for learning new languages

link|flag
vote up 0 vote down

Your best bet might be to get a book on that particular language. A good book will often start you off with a specific programming goal and walk you through to implementation in that language.

link|flag
That's a good start, but I find that I only begin to understand the gestalt of a computer language after I have used it awhile. – Robert Harvey Sep 26 at 19:34
vote up 0 vote down

One thing I like to do is to write some kind of card game like poker or blackjack. It's a pretty simple project but you can get used to the languages version of some basic concepts:

  • Objects/Classes for things like Card, Deck (if your language supports it)
  • Some kind of enum pattern for suits/card values
  • How to separate library code (JARs, dlls, etc) from client code (the game itself)
  • Switch statements/polymorphism for determining poker hand types

I like these kinds of projects because you only write a few hundred lines of code and there's no need to learn any kind of business logic or framework or anything, just basic language structures and syntax.

link|flag
vote up 0 vote down

I always learned A LOT (AI, graphics, logic, etc.) when programming really simple computer-games (e.g.: Snake-remake) and many ScreenSavers just for fun. It's really amazing, that even simplest games (or ScreenSavers) can offer a lot of challenging questions/problems to solve.

link|flag
vote up 0 vote down

What i do is get a good descriptive reference type book, look up forums where people are asking questions and try to research and post the answer for about 2 or 3 (then move up to 3 or 4 if you get through them quickly) posts in a day for a good week , maybe more if i run into an interesting dilemma .. but for the most part, you will be answering questions that you will inevitably be asking yourself someday and it is good to see the scenarios that these problems arise in. Try it out, i suggest it for anyone preparing to self-teach.

link|flag
vote up 0 vote down

Here's 15 exercises to Know a Programming Language - This list is much tougher than the one linked to by Roc, and going through it will give you a decent impression about programming in a programming language of your choice.

link|flag
vote up 0 vote down

Write programs that implement classical data structures and algorithms such as lists, queues, stacks, trees, hashes, simple crypto and the like. Things you might already find in the library of the language.

If you have access to the source code of the library (like you do in .NET), you can compare your implementation against theirs.

link|flag

Your Answer

Get an OpenID
or

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