vote up 0 vote down star
4

whenever I set out to learn a new language, I usually get the best results if I set myself a nice puzzle or problem to solve with it. When learning Haskell, the homework included a SQL-like database language implementation, which really opened my eyes to the beauty of that language. whenlearning x86 assembly, I enjoyed attempting to write my own string manipulation routines, and exploring the different ways to optimize them and make use of registers instead of memory. Another thing I remember is that my first attempt at a bigger Javascript program was a web-based Sudoku solver. While this was ages ago, I do know that I had a lot of fun exploring the language, and even today still enjoy doing an occasional line of Javascript ;)

My question is, what puzzles or problems would you recommend for getting to know a language, and if applicable, what language(s) would it best apply to ?

flag

80% accept rate
Duplicate. stackoverflow.com/questions/6327/… – S.Lott Dec 10 '08 at 2:38
I don't think "exact duplicate" means what you think it means. – Dave L. Dec 10 '08 at 17:00

closed as exact duplicate by S.Lott Dec 10 '08 at 2:38

5 Answers

vote up 4 vote down check

Project Euler is a great place to go for programming puzzles. It seems the most popuplar languages being used there are F# and Python. But that's based on my completely non-researched opinion.

link|flag
vote up 0 vote down

I rather like the SPOJ for this.

link|flag
vote up 1 vote down

The Python Challenge website has a series of 33 levels. Each level is a puzzle that you must use Python's various features to get the hint/clue to move on to the next level (usually resulting in you decoding or figuring out the next URL).

After about 5 days of attempting the Python Challenge I found that I had started with almost zero knowledge of Python and progressed to quickly learn a vast, vast array of topics (data mining, serialization/deserialization, translating strings, and all the various pythonic data structures).

I think that has got to be about the best way to learn a language hands down. The best part of the challenge in my own opinion is after you solve a stage using whatever method you happen to use, you are granted to a wiki page for that level where people post their best solutions. You'll instantly see about a dozen different ways to approach the problem and it is easy to pick up the "best" way to do something like that in the future.

link|flag
vote up 0 vote down

I collected a ton of programming exercises into my Building Skills books. I've accumulated these exercises while learning lots of languages as well as teaching C, Java and Python.

link|flag

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