Interesting coding exercises for noobs - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T05:47:48Zhttp://stackoverflow.com/feeds/question/16192http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/16192/interesting-coding-exercises-for-noobs5Interesting coding exercises for noobsKiwiBastard2008-08-19T13:52:46Z2008-10-08T20:40:08Z
<p>I am running a series of workshops for colleagues cross training to C#. The theory content is fine, but I am finding it hard to come up with interesting exercises for them to do. </p>
<p>Anyone have an ideas or links to exercies that are simple enough for noobs, but interesting enough to keep their interest?</p>
http://stackoverflow.com/questions/16192/interesting-coding-exercises-for-noobs/16194#161940Answer by Nick Berardi for Interesting coding exercises for noobsNick Berardi2008-08-19T13:54:10Z2008-08-19T13:54:10Z<p>All the classics usually work very well:</p>
<ol>
<li>Tower of Hanoi</li>
<li>Fiz Buzz</li>
<li>Etc.</li>
</ol>
http://stackoverflow.com/questions/16192/interesting-coding-exercises-for-noobs/16197#161970Answer by EBGreen for Interesting coding exercises for noobsEBGreen2008-08-19T13:57:21Z2008-08-19T13:57:21Z<p>I find that exercises in their native problem space are best. What kind of code are they going to be writing? What sort of problems will they face daily?</p>
http://stackoverflow.com/questions/16192/interesting-coding-exercises-for-noobs/16200#162000Answer by Martin for Interesting coding exercises for noobsMartin2008-08-19T13:57:54Z2008-08-19T13:57:54Z<p>I recall one from my COBOL training days that involved formatting text for cheques, the input was a monetary value - eg $123,345 - and we had to output the value in words - One hundred and twenty three thousand, three hundred and fourty five dollars.</p>
<p>Was interesting because there are quite a number of ways of coming up with the solution, and nearly everyone in the class had a different implementation - not all of them equal!</p>
http://stackoverflow.com/questions/16192/interesting-coding-exercises-for-noobs/16201#162011Answer by bradtgmurray for Interesting coding exercises for noobsbradtgmurray2008-08-19T13:58:05Z2008-08-19T13:58:05Z<p>The best thing you can do is just start programming something you would find useful or interesting. I find it's a lot easier to stick with things that I'm actually interested in. For example, when I wanted to learn sockets, I created an IRC clone. </p>
<p>There's no reason to stick to toy problems all the time. You'll be surprised how easy it is to develop something useful if you just start working on it and keep working on it, and then you'll have learned something as well as created something you can show off to others. </p>
http://stackoverflow.com/questions/16192/interesting-coding-exercises-for-noobs/16205#162050Answer by N8g for Interesting coding exercises for noobsN8g2008-08-19T13:58:56Z2008-08-19T13:58:56Z<p>Seeing as it is a series of workshops would it be possible to build a useful, if small, application from start to finish. I understand the value of the classic programming problems but it is sometimes nice to learn a new language by solving a real world problem as opposed to an abstract puzzle.</p>
http://stackoverflow.com/questions/16192/interesting-coding-exercises-for-noobs/16206#162061Answer by darkdog for Interesting coding exercises for noobsdarkdog2008-08-19T14:00:04Z2008-08-19T14:00:04Z<p><a href="http://antme.net/English/" rel="nofollow">AntME</a></p>
<p>if you like game coding try this one ;)</p>
http://stackoverflow.com/questions/16192/interesting-coding-exercises-for-noobs/16214#162142Answer by Rob for Interesting coding exercises for noobsRob2008-08-19T14:03:03Z2008-08-19T14:03:03Z<p>To be honest, one of the more interesting coding exercises I have done has been writing your own <a href="http://en.wikipedia.org/wiki/Roguelike" rel="nofollow">rouge-like</a>. Not only does it tend to be a bit on the fun side because you are working on a game that you will (hopefully) be able to play when you are done. It also exposes you to a good variety of data structures, input processing, algorithms, and design principles.</p>
<p>Plus, there is a decent amount of information out there on getting started on it and active enough communities that you can find help if you get stuck.</p>
http://stackoverflow.com/questions/16192/interesting-coding-exercises-for-noobs/16216#162163Answer by Sven Hecht for Interesting coding exercises for noobsSven Hecht2008-08-19T14:04:15Z2008-08-19T14:04:15Z<p>Well the most simple yet interesting things to code i found are libraries of any type.
Like mp3-Library, CD-Library, Book-Library, ...</p>
<p>It is easy to do.
Like starting with a console program which lists the available items from a file.
Then improve it step by step.</p>
<p>Like add a GUI, a Database, or a webinterface.</p>
<p>Then you can go bigger like interacting with the media, hardware recognition of items (like barcodescanner or webcam) or building a webstore for it.</p>
<p>I found that this is a exercise which is able to show something of every aspect of programming.</p>
http://stackoverflow.com/questions/16192/interesting-coding-exercises-for-noobs/16223#162231Answer by ashwnacharya for Interesting coding exercises for noobsashwnacharya2008-08-19T14:06:48Z2008-08-19T14:06:48Z<p>You can ask them to implement some simple games, like minesweeper or tic-tac-toe.</p>
http://stackoverflow.com/questions/16192/interesting-coding-exercises-for-noobs/16232#162320Answer by Bernard for Interesting coding exercises for noobsBernard2008-08-19T14:11:26Z2008-08-19T14:11:26Z<p>Another vote for a rogue-like. Though it may be a tad intensive for people with <em>no</em> prior experience. </p>
http://stackoverflow.com/questions/16192/interesting-coding-exercises-for-noobs/16345#163450Answer by John the Statistician for Interesting coding exercises for noobsJohn the Statistician2008-08-19T14:58:45Z2008-08-19T14:58:45Z<p>An autoencoder neural network is interesting, yet pretty small if you set it up right. Go from 8, to 3, to 8 nodes, and show that if you train over making only one input active, you only need three internal nodes. </p>
http://stackoverflow.com/questions/16192/interesting-coding-exercises-for-noobs/40224#402240Answer by khebbie for Interesting coding exercises for noobskhebbie2008-09-02T18:34:17Z2008-09-02T18:34:17Z<p>I have introduced colleguaes to C# by letting them implement a simple order application using the deFacto architecture of the company.
This way they touch the db, Data Access layer, business layer and ui layer.
The application is no more than an order table, orderlines, users and products...</p>
http://stackoverflow.com/questions/16192/interesting-coding-exercises-for-noobs/40375#403750Answer by joel.neely for Interesting coding exercises for noobsjoel.neely2008-09-02T19:32:35Z2008-09-02T19:32:35Z<p>My answer would depend on what languages your colleagues already know and your organization's application domain.</p>
<p>Here's a strategy I've used with programmers coming from a procedural programming environment (e.g. COBOL, C, VB): Take a small program task couched in terms of their application experience, and start with a "brute force" procedural solution in C#. Then, as you introduce each new concept specific to C# (OO, LINQ, etc.) challenge them to see how that concept can simplify/streamline the procedural code, increase its maintainability, flexibility, testability, etc.</p>
<p>At the end of a series of presentations, you've evolved the program from a a design they might initially recognize into one that uses the kind of new design thinking and language features you wish to encourage. This allows them to see the rationale and contribution of each concept you've introduced.</p>