vote up 4 vote down star
4

I remember stumbling onto a list of basic algorithms to implement in a new language to get your head around how the language does thing, but I seem to have lost the link to it.

What simple tasks/code snippets would you recomend one undertakes to pick get a good feeling of a language?

I'm not talking developing large applications or anything the kind of things I'm thinking about are writing a linked list then extending it to a doubly linked list. Implementing various sort/search algorithms, etc.

Excercises that would help somone who knows how to program in one language get up to speed as quickly as possible in a new language.

flag

66% accept rate

6 Answers

vote up 4 vote down check

I usually take a couple of random problems from Project Euler: http://projecteuler.net/

link|flag
These exercises are mainly from a mathematical background. That's nice but I think you can learn more about a new programming language if you go for a wider scope. – lutz Jun 4 at 9:48
@lutz: yes, I agree. But they are quite challenging and interesting, and you get nice feeling of accomplishment when you submit a solution and it's accepted as a correct one :) – Igor Krivokon Jun 4 at 10:20
vote up 3 vote down

I like the exercises from CodeKata. They are not too easy and not too difficult. Strech your mind with them!

link|flag
vote up 1 vote down

You might try this list from JobSnake to familiarize yourself with a new programming language.

link|flag
vote up 1 vote down

I really do like the problems at spoj.pl. Can be done in quite some lanuages. Yours may be one of those.

link|flag
vote up 0 vote down

I read somewhere that creating a Blog is the HelloWorld 2.0, I saw you don't want big applications but I found worth to share this

link|flag
vote up 0 vote down

Attempting to write compiler/interpreter for it. This opens up many obscure corners of the language and also makes you understand the reasons behind features of the language.

link|flag
hardly simple though is it... – Omar Kooheji Jun 4 at 10:57

Your Answer

Get an OpenID
or

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