active questions tagged exercises - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T15:44:31Z http://stackoverflow.com/feeds/tag/exercises http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/871354/bjarnes-new-book-anyone-done-the-exercises 7 Bjarne's new book - anyone done the exercises? 20th Century Boy 2009-05-16T00:28:55Z 2009-11-28T07:26:35Z <p>I'm doing the exercises in Stroustrup's new book <a href="http://www.stroustrup.com/Programming/" rel="nofollow">"Programming Principles and Practice Using C++"</a> and was wondering if anyone on SO has done them and is willing to share the knowledge? Specifically about the calculator that's developed in Chap 6 and 7. Eg the questions about adding the ! operator and sqrt(), pow() etc. I have done these but I don't know if the solution I have is the "good" way of doing things, and there are no published solutions on Bjarne's website. I'd like to know if I am going down the right track. Maybe we can make a wiki for the exercises?</p> <p>Basically I have a token parser. It reads a char at a time from cin. It's meant to tokenise expressions like 5*3+1 and it works great for that. One of the exercises is to add a sqrt() function. So I modified the tokenising code to detect "sqrt(" and then return a Token object representing sqrt. In this case I use the char 's'. Is this how others would do it? What if I need to implement sin()? The case statement would get messy. </p> <pre><code>char ch; cin &gt;&gt; ch; // note that &gt;&gt; skips whitespace (space, newline, tab, etc.) switch (ch) { case ';': // for "print" case 'q': // for "quit" case '(': case ')': case '+': case '-': case '*': case '/': case '!': return Token(ch); // let each character represent itself case '.': case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': { cin.putback(ch); // put digit back into the input stream double val; cin &gt;&gt; val; // read a floating-point number return Token('8',val); // let '8' represent "a number" } case 's': { char q, r, t, br; cin &gt;&gt; q &gt;&gt; r &gt;&gt; t &gt;&gt; br; if (q == 'q' &amp;&amp; r == 'r' &amp;&amp; t == 't' &amp;&amp; br == '(') { cin.putback('('); // put back the bracket return Token('s'); // let 's' represent sqrt } } default: error("Bad token"); } </code></pre> http://stackoverflow.com/questions/1774615/resources-exercises-to-do-when-learning-a-new-language 1 Resources/Exercises to do when learning a new language josh 2009-11-21T05:37:46Z 2009-11-21T22:27:40Z <p>I was looking around SO to find some exercises or interesting problems to do when learning a new language. Mostly of the time learning a language directly from reading the book does not work, even when a book tries to make an application from scratch to end. </p> <p>Besides <a href="http://codekata.pragprog.com/" rel="nofollow">Code Kata</a>, <a href="http://www.knowing.net/index.php/2006/06/16/15-exercises-to-know-a-programming-language-part-1/" rel="nofollow">15 Exercises to know...</a> and <a href="http://projecteuler.net/" rel="nofollow">Project Euler</a> what are some other resources?</p> <p>Also, what if the language in question is mainly used for web development..or that is the main intent of the developer for learning the language. In those cases, I doubt stuff in Project Euler will help. Are there sets of functionalities that should be implemented in a web app for a developer to feel confident about his skills in that language/framework?</p> http://stackoverflow.com/questions/1737913/problems-for-backwards-thinking -2 Problems for backwards thinking? [closed] acidzombie24 2009-11-15T15:54:21Z 2009-11-15T17:24:59Z <p>I have always known i was never good at thinking backwards. I am good at thinking in many styles but backwards always gave me issue. I would like to exercise it with a few problems. Here is an example given to me a few months ago. I would like more question like things, program orientated or not.</p> <blockquote> <p>You are on an island with three natives. You must figure out which native is lying to you and which are not. The native must either only tell the truth or must only tell a lie. The first native speaks but you cannot hear. The others hear him. The second says the first native said he tells the truth and he does in fact tell the truth. I also tell the truth. The 3rd guy say the 2nd native is a liar.</p> </blockquote> <p>Solution: (Maybe some of you dont want to read this?) The 3rd guy is easy, he is the opposite of the 2nd. The first we did not hear so we are focusing on what the 2nd said. If he tells the truth this is simple, the first two tells the truth and the 3rd lies. The hard part if confirming it by checking his statement in the case he lies.</p> <p>I dont feel like rephrasing this so i'll copy paste my reply</p> <blockquote> <p>If the 2nd was lying; saying the first is a truth teller would mean the 1st is a liar. Then the 1st MUST say he is a truth teller so the 2nd MUST say the first said he is a liar. Which didnt happen the 2nd must be telling the truth, the first is obviously telling the truth because the confirmed truth telling 2nd said the first was and the 3rd is a lying by saying the 2nd is a liar.</p> </blockquote> <p>The problem i had was making up what the first person would say and go backwards to confirm it. That is counter intuitive to me. What brain teasers or problems can you guys think of that involves backward thinking?</p> http://stackoverflow.com/questions/1636755/how-many-different-ways-are-there-to-concatenate-two-files-line-by-line-using-per 3 How many different ways are there to concatenate two files line by line using Perl? Mike 2009-10-28T11:46:14Z 2009-11-01T12:23:15Z <p>Suppose file1 looks like this:</p> <pre> bye bye hello thank you </pre> <p>And file2 looks like this:</p> <pre> chao hola gracias </pre> <p>The desired output is this:</p> <pre> bye bye chao hello hola thank you gracias </pre> <p>I myself have already come up with five different approaches to solve this problem. But I think there must be more ways, probably more concise and more elegant ways, and I hope I can learn more cool stuff :)</p> <p>The following is what I have tried so far, based on what I've learnt from the many solutions of my previous problems. Also, I'm trying to sort of digest or internalize the knowledge I've acquired from the Llama book.</p> <p>Code 1:</p> <pre><code>#!perl use autodie; use warnings; use strict; open my $file1,'&lt;','c:/file1.txt'; open my $file2,'&lt;','c:/file2.txt'; while(defined(my $line1 = &lt;$file1&gt;) and defined(my $line2 = &lt;$file2&gt;)){ die "Files are different sizes!\n" unless eof(file1) == eof(file2); $line1 .= $line2; $line1 =~ s/\n/ /; print "$line1 \n"; } </code></pre> <p>Code 2:</p> <pre><code>#!perl use autodie; use warnings; use strict; open my $file1,'&lt;','c:/file1.txt'; my @file1 = &lt;$file1&gt;; open my $file2,'&lt;','c:/file2.txt'; my @file2 =&lt;$file2&gt;; for (my $n=0; $n&lt;=$#file1; $n++) { $file1[$n] .=$file2[$n]; $file1[$n]=~s/\n/ /; print $file1[$n]; } </code></pre> <p>Code 3:</p> <pre><code>#!perl use autodie; use warnings; use strict; open my $file1,'&lt;','c:/file1.txt'; open my $file2,'&lt;','c:/file2.txt'; my %hash; while(defined(my $line1 = &lt;$file1&gt;) and defined(my $line2 = &lt;$file2&gt;)) { chomp $line1; chomp $line2; my ($key, $val) = ($line1,$line2); $hash{$key} = $val; } print map { "$_ $hash{$_}\n" } sort keys %hash; </code></pre> <p>Code 4:</p> <pre><code>#!perl use autodie; use warnings; use strict; open my $file1,'&lt;','c:/file1.txt'; open my $file2,'&lt;','c:/file2.txt'; while(defined(my $line1 = &lt;$file1&gt;) and defined(my $line2 = &lt;$file2&gt;)) { $line1 =~ s/(.+)/$1 $line2/; print $line1; } </code></pre> <p>Code 5:</p> <pre><code>#!perl use autodie; use warnings; use strict; open my $file1,'&lt;','c:/file1.txt'; my @file1 =&lt;$file1&gt;; open my $file2,'&lt;','c:/file2.txt'; my @file2 =&lt;$file2&gt;; while ((@file1) &amp;&amp; (@file2)){ my $m = shift (@file1); chomp($m); my $n = shift (@file2); chomp($n); $m .=" ".$n; print "$m \n"; } </code></pre> <p>I have tried something like this:</p> <pre><code>foreach $file1 (@file2) &amp;&amp; foreach $file2 (@file2) {...} </code></pre> <p>But Perl gave me a syntactic error warning. I was frustrated. But can we run two <code>foreach</code> loops simultaneously? </p> <p>Thanks, as always, for any comments, suggestions and of course the generous code sharing :)</p> http://stackoverflow.com/questions/906309/what-is-a-good-way-to-conduct-a-group-kata 4 What is a good way to conduct a Group Kata? mparaz 2009-05-25T11:05:36Z 2009-10-21T16:51:26Z <p>I'd like to conduct a group Kata session, to get my software developer group to pick up the practice.</p> <p>I'm thinking of giving some of the sample problems out there, and splitting the group into two teams. The solutions may be developed in different languages.</p> <p>Would it be more fun and educational to structure this as a contest?</p> <p>What are your experiences with group Katas?</p> http://stackoverflow.com/questions/1595071/functions-to-compress-and-uncompress-array-of-integers 0 Functions to compress and uncompress array of integers Zahir 2009-10-20T14:35:57Z 2009-10-20T16:30:43Z <p>Hi all</p> <p>I was recently asked to complete a task for a c++ role, however as the application was decided not to be progressed any further I thought that I would post here for some feedback / advice / improvements / reminder of concepts I've forgotten.</p> <p>The task was:</p> <p>The following data is a time series of integer values</p> <pre><code>int timeseries[32] = {67497, 67376, 67173, 67235, 67057, 67031, 66951, 66974, 67042, 67025, 66897, 67077, 67082, 67033, 67019, 67149, 67044, 67012, 67220, 67239, 66893, 66984, 66866, 66693, 66770, 66722, 66620, 66579, 66596, 66713, 66852, 66715}; </code></pre> <p>The series might be, for example, the closing price of a stock each day over a 32 day period.</p> <p>As stored above, the data will occupy <code>32 x sizeof(int) bytes = 128 bytes</code> assuming 4 byte ints.</p> <p>Using delta encoding , write a function to compress, and a function to uncompress data like the above.</p> <p>Ok, so before this point I had never looked at compression so my solution is far from perfect. The manner in which I approached the problem is by compressing the array of integers into a array of bytes. When representing the integer as a byte I keep the calculate most significant byte (msb) and keep everything up to this point, whilst throwing the rest away. This is then added to the byte array. For negative values I increment the msb by 1 so that we can differentiate between positive and negative bytes when decoding by keeping the leading 1 bit values.</p> <p>When decoding I parse this jagged byte array and simply reverse my previous actions performed when compressing. As mentioned I have never looked at compression prior to this task so I did come up with my own method to compress the data. I was looking at C++/Cli recently, had not really used it previously so just decided to write it in this language, no particular reason. Below is the class, and a unit test at the very bottom. Any advice / improvements / enhancements will be much appreciated. </p> <p>Thanks.</p> <pre><code>array&lt;array&lt;Byte&gt;^&gt;^ CDeltaEncoding::CompressArray(array&lt;int&gt;^ data) { int temp = 0; int original; int size = 0; array&lt;int&gt;^ tempData = gcnew array&lt;int&gt;(data-&gt;Length); data-&gt;CopyTo(tempData, 0); array&lt;array&lt;Byte&gt;^&gt;^ byteArray = gcnew array&lt;array&lt;Byte&gt;^&gt;(tempData-&gt;Length); for (int i = 0; i &lt; tempData-&gt;Length; ++i) { original = tempData[i]; tempData[i] -= temp; temp = original; int msb = GetMostSignificantByte(tempData[i]); byteArray[i] = gcnew array&lt;Byte&gt;(msb); System::Buffer::BlockCopy(BitConverter::GetBytes(tempData[i]), 0, byteArray[i], 0, msb ); size += byteArray[i]-&gt;Length; } return byteArray; } array&lt;int&gt;^ CDeltaEncoding::DecompressArray(array&lt;array&lt;Byte&gt;^&gt;^ buffer) { System::Collections::Generic::List&lt;int&gt;^ decodedArray = gcnew System::Collections::Generic::List&lt;int&gt;(); int temp = 0; for (int i = 0; i &lt; buffer-&gt;Length; ++i) { int retrievedVal = GetValueAsInteger(buffer[i]); decodedArray-&gt;Add(retrievedVal); decodedArray[i] += temp; temp = decodedArray[i]; } return decodedArray-&gt;ToArray(); } int CDeltaEncoding::GetMostSignificantByte(int value) { array&lt;Byte&gt;^ tempBuf = BitConverter::GetBytes(Math::Abs(value)); int msb = tempBuf-&gt;Length; for (int i = tempBuf-&gt;Length -1; i &gt;= 0; --i) { if (tempBuf[i] != 0) { msb = i + 1; break; } } if (!IsPositiveInteger(value)) { //We need an extra byte to differentiate the negative integers msb++; } return msb; } bool CDeltaEncoding::IsPositiveInteger(int value) { return value / Math::Abs(value) == 1; } int CDeltaEncoding::GetValueAsInteger(array&lt;Byte&gt;^ buffer) { array&lt;Byte&gt;^ tempBuf; if(buffer-&gt;Length % 2 == 0) { //With even integers there is no need to allocate a new byte array tempBuf = buffer; } else { tempBuf = gcnew array&lt;Byte&gt;(4); System::Buffer::BlockCopy(buffer, 0, tempBuf, 0, buffer-&gt;Length ); unsigned int val = buffer[buffer-&gt;Length-1] &amp;= 0xFF; if ( val == 0xFF ) { //We have negative integer compressed into 3 bytes //Copy over the this last byte as well so we keep the negative pattern System::Buffer::BlockCopy(buffer, buffer-&gt;Length-1, tempBuf, buffer-&gt;Length, 1 ); } } switch(tempBuf-&gt;Length) { case sizeof(short): return BitConverter::ToInt16(tempBuf,0); case sizeof(int): default: return BitConverter::ToInt32(tempBuf,0); } } </code></pre> <p>And then in a test class I had:</p> <pre><code>void CTestDeltaEncoding::TestCompression() { array&lt;array&lt;Byte&gt;^&gt;^ byteArray = CDeltaEncoding::CompressArray(m_testdata); array&lt;int&gt;^ decompressedArray = CDeltaEncoding::DecompressArray(byteArray); int totalBytes = 0; for (int i = 0; i&lt;byteArray-&gt;Length; i++) { totalBytes += byteArray[i]-&gt;Length; } Assert::IsTrue(m_testdata-&gt;Length * sizeof(m_testdata) &gt; totalBytes, "Expected the total bytes to be less than the original array!!"); //Expected totalBytes = 53 } </code></pre> http://stackoverflow.com/questions/266053/what-are-some-exercises-you-do-to-make-you-a-better-programmer 35 What are some exercises you do to make you a better programmer? Sara Chipps 2008-11-05T18:01:23Z 2009-10-19T19:41:07Z <p>Lately, I have taken to programming without a mouse to force myself to become more comfortable with different shortcuts. It's been a good exercise as I feel using shortcuts is essential for productivity .</p> <p>I figured I would ask if anyone else did the same types of things and could recommend other things to help improve my habits. </p> http://stackoverflow.com/questions/1147587/games-for-learning 10 Games for learning Jørgen Fogh 2009-07-18T13:54:44Z 2009-10-12T10:57:36Z <p>I often find myself wasting a lot of time playing short games like Mine Sweeper or Solitaire in between my studying. I am looking for a better habit to replace this one.</p> <p>I have learned a lot by solving problems from programming competitions, an activity which has a certain instant gratification / short feedback-loop quality to it. The loop is just not tight enough to replace Solitaire.</p> <p>Do you know any games / exercises which are relevant computer scientist?</p> <p>The important thing is that they should be possible to play with very little preparation and take a very short time to complete. Otherwise they will become just another "task".</p> http://stackoverflow.com/questions/1538435/ruby-oop-practice-problem-and-solution-set-for-beginners 0 ruby oop practice problem and solution set for beginners fakeleft 2009-10-08T15:07:35Z 2009-10-11T01:13:24Z <p>I need a set of ruby problems + solutions that require solutions involving more than a few interacting classes. The point is to teach OOP in ruby to a beginner. Sites like rubyquiz tend to have problems that require clever algorithms, rather than OOP design. The best I can think of so far is to do a very simple game like pong, but Ruby still feels sketchy on the UI-building front, so I was hoping to avoid the additional complications for now. That, and I don't want to spend the time writing solutions for the person I'm teaching to look at.</p> <p>Please don't bother posting advice on how else to go about learning OOP - seen it in other questions already.</p> http://stackoverflow.com/questions/605000/programming-exercises-to-learn-a-new-language 12 Programming exercises to learn a new language Size_J 2009-03-03T03:33:01Z 2009-09-26T19:36:52Z <p>I can not seem to find this exactly as a post, but what I am looking for is a list of exercises to help me get better at programming. Like Fibonacci sequences, temperature conversions, etc. A website would be great. Thanks for any help. </p> http://stackoverflow.com/questions/1385595/debugging-exercises 9 Debugging exercises Adrian Panasiuk 2009-09-06T12:49:40Z 2009-09-06T15:29:08Z <p>Is there something like Project Euler, but with each task consisting of a broken program which you have to fix? So one can improve debugging skills. Where you can post your improved version, and it checks if your fixed version of the program works correctly (and possibly that you haven't just totally rewritten). Perhaps also a spoiler page which describes the problem and debugging techniques useful for the exercise.</p> <p>Small/medium sized problems, not too big, so you can do them as sort of programming-entertainment. Fixing real problems in open source software is good, but it needs more setting up, the code is generally much larger and the problems may be too hard.</p> http://stackoverflow.com/questions/1340586/how-to-use-the-apt-tool-to-create-exercises-in-course-material 2 How to use the APT tool to create exercises in course material Christian 2009-08-27T11:52:05Z 2009-08-27T13:52:35Z <p>I'm in the process of creating exercises in how to write a plug-in to a system integration tool. We will have the correct answers implemented for demonstration after exercises, but the students will receive source where some methods are empty and just have a comment with a TODO in them describing what they should do.</p> <p>To avoid duplication, it would be nice if the students' versions could be generated from the compilable and correct answer source-files. It struck me that the Java Annotation Processing Tool (that APT, not the debian APT) could possibly be used to generate the exercises, to have APT spit out methods as empty if the input method carries an annotation to do so.</p> <p>Is this possible to do using APT? If so, how would one do it?</p> <p>Are there better/easier ways to avoid having duplication, to generate the exercises and correct answers from a single source, that I am overlooking?</p> http://stackoverflow.com/questions/784241/noob-project-to-learn-spring-hibernate 2 noob project to learn Spring/Hibernate Kapsh 2009-04-24T01:55:36Z 2009-08-16T18:49:18Z <p>I want to get my feet wet with Spring/Hibernate. But I think I move along faster and am more motivated if I am working with code rather than just reading a book chapter by chapter.</p> <p>Does anyone have any good ideas for a home project to work on to learn these technologies? Any exercises that you might have worked on and thought useful?</p> <p>Or perhaps you know of a book/tutorial that is based on a single project and walks you through it?</p> http://stackoverflow.com/questions/1252062/emacs-exercises-to-become-more-comfortable-and-familiar-with-the-editor-itself-as 10 Emacs exercises to become more comfortable and familiar with the editor itself as well as Lisp? mwilliams 2009-08-09T19:41:16Z 2009-08-13T22:30:25Z <p>There's a great project called the <a href="http://github.com/edgecase/ruby%5Fkoans/tree/master" rel="nofollow">Ruby Koans</a>, it's a series of tasks to exercise yourself in the Ruby language, stepping you through the standard library using the Ruby Unit Testing suite as a learning tool. It's a great project.</p> <p>I'd love to see something similar for Emacs. </p> <p>Can anyone recommend any Lisp exercises to be done inside of Emacs to both exercise Lisp and Emacs usage? Perhaps also while completing the Ruby Koans?</p> http://stackoverflow.com/questions/6327/what-are-your-programming-exercises 58 What are your programming exercises? Bryan Denny 2008-08-08T19:56:57Z 2009-08-07T03:59:18Z <p>Do you have any programming "exercises" that you do in order to hone your programming skills? Anything from <a href="http://www.codinghorror.com/blog/archives/000781.html" rel="nofollow">FizzBuzz</a> to more complicated problems to get you thinking about real-life scenarios that you may encounter?</p> http://stackoverflow.com/questions/362544/scaling-exercises-to-practice 2 Scaling exercises to practice Manuel Ferreria 2008-12-12T11:51:56Z 2009-08-05T18:49:23Z <p>I was trying to find online some exercises to practice scaling techniques (memchached, SQL Optimization, sharding dbs), but I could only find descriptions of these techniques, not any project on which to try them.</p> <p>This link with <a href="http://www.slideshare.net/Georgio_1999/how-to-scale-your-web-app" rel="nofollow">slides on scaling techniques</a>, is an interesting one, as it sums up some tools to achieve scalability quite well.</p> <p>Is there a projecteuler kind of site for these kind of activities? Or at least some excercises (such as a downloadable ASP.NET/PHP site with obvious slowdowns, concurrency issues, subtle bugs) for people to try and learn how to fight this issue?</p> http://stackoverflow.com/questions/1171252/whats-the-explanation-for-exercise-1-4-in-sicp 2 What's the explanation for Exercise 1.4 in SICP? Alex Basson 2009-07-23T11:53:13Z 2009-07-23T13:04:57Z <p>I'm just beginning to work through SICP (on my own; this isn't for a class), and I've been struggling with Exercise 1.4 for a couple of days and I just can't seem to figure it out. This is the one where Alyssa re-defines <code>if</code> in terms of <code>cond</code>, like so:</p> <pre><code>(define (new-if predicate then-clause else-clause) (cond (predicate then-clause) (else else-clause)) </code></pre> <p>She tests it successfully on some simple cases, and then uses it to re-write the square root program (which worked just fine with <code>if</code>):</p> <pre><code>(define (sqrt-iter guess x) (new-if (good-enough? guess x) guess (sqrt-iter (improve guess x) x))) </code></pre> <p>The question then asks: "What happens when Alyssa attempts to use this to compute square roots? Explain." [If necessary, I'm happy to reproduce the other procedures (<code>good-enough?</code>, <code>improve</code>, etc.), just let me know.]</p> <p>Now, I know what happens: it never returns a value, which means that the program recurs (executes recursively? What's the verb form of "recursive"?) infinitely. I just can't explain why this happens. Whatever subtle difference exists between <code>if</code> and <code>new-if</code> is eluding me. Any and all help much appreciated.</p> http://stackoverflow.com/questions/1076580/recommend-an-algorithms-exercise-book 19 Recommend an algorithms exercise book? Parappa 2009-07-02T20:41:26Z 2009-07-16T06:40:53Z <p>I have a little book called <a href="http://rads.stackoverflow.com/amzn/click/0134335589" rel="nofollow">Problems on Algorithms</a> by Ian Parberry which is chock full of exercises related to the study of algorithms. Can anybody recommend similar books?</p> <p>What I am <strong>not</strong> looking for are recommendations of good books related to algorithms or the theory of computation. <a href="http://rads.stackoverflow.com/amzn/click/0262032937" rel="nofollow">Introduction to Algorithms</a> is a good one, and of course there's the <a href="http://rads.stackoverflow.com/amzn/click/0201485419" rel="nofollow">Knuth stuff</a>.</p> <p>Ideally I want to know of any books that are light on instructional material and heavy on sample problems. In a nutshell, exercise books. Preferably dedicated to algorithms rather than general logic or other math problems.</p> <p>By the way, the Parberry book does not seem to be in print, but it is available <a href="http://www.eng.unt.edu/ian/books/free/" rel="nofollow">as a PDF dowload</a>.</p> http://stackoverflow.com/questions/1102639/good-book-about-php-with-good-exercises 1 good book about PHP with good exercises Alexandr Ciornii 2009-07-09T08:53:28Z 2009-07-10T03:11:08Z <p>Is there any book about modern PHP (like 5.2 + mysqli or PDO) for beginners with good <b>exercises</b> (for ex., good exercises are in "Learning Perl", which is one of the best books for beginners)?</p> <p>P.S. (considering some answers I got on IRC): it should not be a tutorial, it should not be a video tutorial, it should not be outdated (like using outdated 'mysql' extension), it should contain <b>exercises</b>.</p> http://stackoverflow.com/questions/999004/coding-exercise-with-example-solutions 2 coding exercise with example solutions Cody 2009-06-15T23:44:49Z 2009-06-16T00:41:46Z <p>I'm looking for coding exercises that have solutions. I've checked out <a href="http://www.topcoder.com/" rel="nofollow">topcoder</a> and <a href="http://codekata.com/" rel="nofollow">codekata</a> but neither seem to have user posted solutions (maybe I just can't find them?). </p> <p>Basically I can (try) to figure out how I would solve a problem but what I want is to learn and expand my knowledge by see how other (better) coders would solve the same thing. </p> http://stackoverflow.com/questions/995627/where-can-i-find-c-coding-exercises-to-practice 5 Where can I find C coding exercises to practice? Benjamin 2009-06-15T11:35:49Z 2009-06-15T17:34:25Z <p>Tutorials are a dime a dozen, but I'd like to find a list of exercises online that I could attempt to practice what I'm learning. The sort of things that start with "Write a program to..."</p> <p>I'm an absolute beginner, so basic exercises increasing in difficulty would be great.</p> http://stackoverflow.com/questions/915984/what-are-some-helpful-tools-excercises-etc-to-teach-an-apprentice-c 0 What are some helpful tools, excercises, etc. to teach an apprentice C#? Joseph 2009-05-27T14:22:18Z 2009-05-27T14:36:24Z <p>I'm bringing on an apprentice to help with my firm, and I'm about to start teaching him C#. I'm trying to find any tools, excercises, book, etc. that can aid in helping him learn C#. I'm willing to invest to a certain degree, so anything that is commercial may also be viable. </p> <p>This is to apprentice someone who is in the college years, but not currently in the programming field, or in that school to any degree, at least not for now. He is keenly interested in helping me with my firm because he wants work and he's helped me with enough that I see some potential in him to be a good programmer.</p> http://stackoverflow.com/questions/739685/intermediate-c-exercises 2 Intermediate C++ Exercises Jamin Huntley 2009-04-11T07:35:49Z 2009-04-11T08:00:33Z <p>I'm looking for interesting exercises to code that would be suitable for an intermediate level c++ programmer. I know that the 'term' intermediate covers a lot of ground and varies from person to person but just post what you think would fall into the category.</p> <p>Thank you. </p> http://stackoverflow.com/questions/441087/php-exercises 0 php exercises greg606 2009-01-13T22:26:52Z 2009-03-31T08:39:45Z <p>Hi, I'm looking for exercises that will help me to learn php (complex loops, arrays, tricks etc)</p> http://stackoverflow.com/questions/634442/tips-and-exercises-for-caring-for-your-hands-over-time 4 Tips and exercises for caring for your hands over time? [closed] glenatron 2009-03-11T13:09:35Z 2009-03-11T13:14:49Z <p>I've noticed lately after ten years as a full-time programmer/computer user ( and hobby guitarist ) that my hands are starting to get a bit tight in certain movements. I'm sure this is a matter of having been doing the same things with them for many years, but as I understand it this pattern is one that is likely to result in arthritis in the long term and I would prefer to keep my hands flexible and working for as long as possible.</p> <p>Do any of you have any suggestions for good hand or wrist-specific stretches and exercises to keep your hands working well in the long term?</p> <p>I know that this ties in to posture, back, shoulder and arm matters which have arisen previously but I'm thinking very specifically about hands here and how best they can be preserved.</p> <p><hr></p> <p>Related:</p> <p><a href="http://stackoverflow.com/questions/526679/as-a-programmer-how-do-you-deal-with-carpal-tunnel-closed">http://stackoverflow.com/questions/526679/as-a-programmer-how-do-you-deal-with-carpal-tunnel-closed</a></p> <p><a href="http://stackoverflow.com/questions/1915/how-do-i-know-if-have-rsi-or-carpal-tunnel">http://stackoverflow.com/questions/1915/how-do-i-know-if-have-rsi-or-carpal-tunnel</a></p> <p><a href="http://stackoverflow.com/questions/455525/is-the-switch-to-dvorak-worth-it">http://stackoverflow.com/questions/455525/is-the-switch-to-dvorak-worth-it</a></p> <p><a href="http://stackoverflow.com/questions/397499/tendonitis-in-my-wrist">http://stackoverflow.com/questions/397499/tendonitis-in-my-wrist</a></p> <p><a href="http://stackoverflow.com/questions/687/keyboard-for-programmers">http://stackoverflow.com/questions/687/keyboard-for-programmers</a></p> http://stackoverflow.com/questions/450561/how-best-to-implement-bcd-as-an-exercise 1 How best to implement BCD as an exercise? Skilldrick 2009-01-16T14:34:30Z 2009-02-20T14:49:36Z <p>I'm a beginner (self-learning) programmer learning C++, and recently I decided to implement a binary-coded decimal (BCD) class as an exercise, and so I could handle very large numbers on <a href="http://www.projecteuler.net" rel="nofollow">Project Euler</a>. I'd like to do it as basically as possible, starting properly from scratch.</p> <p>I started off using an array of ints, where every digit of the input number was saved as a separate int. I know that each BCD digit can be encoded with only 4 bits, so I thought using a whole int for this was a bit overkill. I'm now using an array of bitset&lt;4>'s.</p> <ol> <li>Is using a library class like this overkill as well?</li> <li>Would you consider it cheating?</li> <li>Is there a better way to do this? </li> </ol> <p>EDIT: The primary reason for this is as an exercise - I wouldn't want to use a library like GMP because the whole point is making the class myself. Is there a way of making sure that I only use 4 bits for each decimal digit?</p> http://stackoverflow.com/questions/432246/interesting-programming-exercises-problems 0 Interesting Programming Exercises/Problems? [closed] koldfyre 2009-01-11T02:43:13Z 2009-01-11T03:02:04Z <p>What are some interesting programming exercises/problems?</p> <p>Also include the language (if relevant).</p> http://stackoverflow.com/questions/386325/where-can-i-find-a-collection-regular-expression-exercises-for-perl 3 Where can I find a collection regular expression exercises for Perl? Jox 2008-12-22T14:11:39Z 2008-12-23T04:22:43Z <p>I learned a lot of Perl RegEx syntax rules, but probably the only way to actually be able to write them is to do a bunch of 'RegEx' related exercises.</p> <p>I looked over the other "Learn RegEx" threads on StackOverflow, but haven't found anything similar.</p> <p>Is there any collection of such exercises? In form of book, HTML, with/without answers, it doesn't matter, just to keep me writing RegExes for a while.</p> http://stackoverflow.com/questions/276195/classic-programming-exercises 4 Classic programming exercises Cristian Libardo 2008-11-09T17:51:17Z 2008-11-10T11:36:59Z <p>I was looking for some good programming exercises for some mentoring. Something like:</p> <ul> <li><a href="http://projecteuler.net/" rel="nofollow">projecteuler.net</a>: good for the mathematical side but somewhat abstract</li> <li>DNS client: good exercise + concrete technology understanding</li> </ul> <p>Sorry for asking this again. I did find this <a href="http://stackoverflow.com/questions/102284">thread</a> but I was hoping for something concrete. Preferably something small you had fun with yourself. </p> <p>I'm kind of thinking it's something that must come from within, but seeding a few ideas shouldn't hurt.</p> http://stackoverflow.com/questions/244264/where-to-practice-lambda-function 5 Where to practice Lambda function? Daok 2008-10-28T18:13:47Z 2008-10-29T17:15:31Z <p>I am currently trying to learn all new features of C#3.0. I have found a very nice collection of <a href="http://msdn.microsoft.com/en-us/vcsharp/aa336746.aspx" rel="nofollow">sample to practice LINQ</a> but I can't find something similar for Lambda.</p> <p>Do you have a place that I could practice Lambda function?</p> <h2>Update</h2> <p>LINQpad is great to learn Linq (thx for the one who suggest) and use a little bit Lambda in some expression. But I would be interesting in more specific exercise for Lambda.</p>