Interesting coding exercises for noobs - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T05:47:48Z http://stackoverflow.com/feeds/question/16192 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/16192/interesting-coding-exercises-for-noobs 5 Interesting coding exercises for noobs KiwiBastard 2008-08-19T13:52:46Z 2008-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#16194 0 Answer by Nick Berardi for Interesting coding exercises for noobs Nick Berardi 2008-08-19T13:54:10Z 2008-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#16197 0 Answer by EBGreen for Interesting coding exercises for noobs EBGreen 2008-08-19T13:57:21Z 2008-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#16200 0 Answer by Martin for Interesting coding exercises for noobs Martin 2008-08-19T13:57:54Z 2008-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#16201 1 Answer by bradtgmurray for Interesting coding exercises for noobs bradtgmurray 2008-08-19T13:58:05Z 2008-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#16205 0 Answer by N8g for Interesting coding exercises for noobs N8g 2008-08-19T13:58:56Z 2008-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#16206 1 Answer by darkdog for Interesting coding exercises for noobs darkdog 2008-08-19T14:00:04Z 2008-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#16214 2 Answer by Rob for Interesting coding exercises for noobs Rob 2008-08-19T14:03:03Z 2008-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#16216 3 Answer by Sven Hecht for Interesting coding exercises for noobs Sven Hecht 2008-08-19T14:04:15Z 2008-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#16223 1 Answer by ashwnacharya for Interesting coding exercises for noobs ashwnacharya 2008-08-19T14:06:48Z 2008-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#16232 0 Answer by Bernard for Interesting coding exercises for noobs Bernard 2008-08-19T14:11:26Z 2008-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#16345 0 Answer by John the Statistician for Interesting coding exercises for noobs John the Statistician 2008-08-19T14:58:45Z 2008-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#40224 0 Answer by khebbie for Interesting coding exercises for noobs khebbie 2008-09-02T18:34:17Z 2008-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#40375 0 Answer by joel.neely for Interesting coding exercises for noobs joel.neely 2008-09-02T19:32:35Z 2008-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>