What are good language learning puzzles/problems? - Stack Overflow [closed]most recent 30 from stackoverflow.com2009-12-17T02:43:29Zhttp://stackoverflow.com/feeds/question/354625http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/354625/what-are-good-language-learning-puzzles-problems0What are good language learning puzzles/problems? [closed]Frans-Willem2008-12-09T23:33:07Z2008-12-10T00:44:22Z
<p>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 ;)</p>
<p>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 ?</p>
http://stackoverflow.com/questions/354625/what-are-good-language-learning-puzzles-problems/354632#3546320Answer by S.Lott for What are good language learning puzzles/problems?S.Lott2008-12-09T23:38:49Z2008-12-09T23:38:49Z<p>I collected a ton of programming exercises into my <a href="http://homepage.mac.com/s_lott/books/python.html" rel="nofollow"><em>Building Skills</em> books</a>. I've accumulated these exercises while learning <a href="http://homepage.mac.com/s_lott/iblog/architecture/C588245363/E20080928192106/index.html" rel="nofollow">lots of languages</a> as well as teaching C, Java and Python. </p>
http://stackoverflow.com/questions/354625/what-are-good-language-learning-puzzles-problems/354637#3546374Answer by JaredPar for What are good language learning puzzles/problems?JaredPar2008-12-09T23:40:49Z2008-12-09T23:40:49Z<p><a href="http://projecteuler.net/" rel="nofollow">Project Euler</a> 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.</p>
http://stackoverflow.com/questions/354625/what-are-good-language-learning-puzzles-problems/354645#3546451Answer by Simucal for What are good language learning puzzles/problems?Simucal2008-12-09T23:45:15Z2008-12-09T23:45:15Z<p>The <a href="http://www.pythonchallenge.com/" rel="nofollow">Python Challenge</a> 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).</p>
<p>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).</p>
<p>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.</p>
http://stackoverflow.com/questions/354625/what-are-good-language-learning-puzzles-problems/354748#3547483Answer by Dave L. for What are good language learning puzzles/problems?Dave L.2008-12-10T00:38:31Z2008-12-10T00:38:31Z<p>See many related questions:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/10936/projects-for-learning-a-new-language">http://stackoverflow.com/questions/10936/projects-for-learning-a-new-language</a></li>
<li><a href="http://stackoverflow.com/questions/24692/where-can-you-find-funeducational-programming-challenges">http://stackoverflow.com/questions/24692/where-can-you-find-funeducational-programming-challenges</a></li>
<li><a href="http://stackoverflow.com/questions/185742/beginner-practical-programming-problems">http://stackoverflow.com/questions/185742/beginner-practical-programming-problems</a></li>
<li><a href="http://stackoverflow.com/questions/53887/where-do-you-go-to-tickle-your-brain-to-get-programming-challenges">http://stackoverflow.com/questions/53887/where-do-you-go-to-tickle-your-brain-to-get-programming-challenges</a></li>
<li><a href="http://stackoverflow.com/questions/6327/what-are-your-programming-excercises">http://stackoverflow.com/questions/6327/what-are-your-programming-excercises</a></li>
<li><a href="http://stackoverflow.com/questions/294198/games-to-improve-programming-skills">http://stackoverflow.com/questions/294198/games-to-improve-programming-skills</a></li>
</ul>
http://stackoverflow.com/questions/354625/what-are-good-language-learning-puzzles-problems/354760#3547600Answer by J Cooper for What are good language learning puzzles/problems?J Cooper2008-12-10T00:44:22Z2008-12-10T00:44:22Z<p>I rather like <a href="http://www.spoj.pl/problems/classical/" rel="nofollow">the SPOJ</a> for this.</p>