1
vote
6answers
39 views
Resources/Exercises to do when learning a new language
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 …
-2
votes
3answers
105 views
Problems for backwards thinking? [closed]
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 …
3
votes
5answers
240 views
How many different ways are there to concatenate two files line by line using Perl?
Suppose file1 looks like this:
bye bye
hello
thank you
And file2 looks like this:
chao
hola
gracias
The desired output is this:
bye bye chao
hello hola
thank you gracias
I myself have …
35
votes
44answers
4k views
What are some exercises you do to make you a better programmer?
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 …
58
votes
32answers
3k views
What are your programming exercises?
Do you have any programming "exercises" that you do in order to hone your programming skills? Anything from FizzBuzz to more complicated problems to get you thinking about real-life scenarios that …
0
votes
2answers
124 views
Functions to compress and uncompress array of integers
Hi all
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 / …
10
votes
14answers
289 views
Games for learning
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.
I have learned a lot by …
19
votes
13answers
822 views
Recommend an algorithms exercise book?
I have a little book called Problems on Algorithms by Ian Parberry which is chock full of exercises related to the study of algorithms. Can anybody recommend similar books?
What I am not looking for …
0
votes
4answers
87 views
ruby oop practice problem and solution set for beginners
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 …
7
votes
5answers
803 views
Bjarne’s new book - anyone done the exercises?
I'm doing the exercises in Stroustrup's new book "Programming Principles and Practice Using C++" and was wondering if anyone on SO has done them and is willing to share the knowledge? Specifically …
10
votes
5answers
311 views
Emacs exercises to become more comfortable and familiar with the editor itself as well as Lisp?
There's a great project called the Ruby Koans, 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 …
12
votes
14answers
567 views
Programming exercises to learn a new language
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 …
9
votes
3answers
107 views
Debugging exercises
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 …
4
votes
4answers
121 views
What is a good way to conduct a Group Kata?
I'd like to conduct a group Kata session, to get my software developer group to pick up the practice.
I'm thinking of giving some of the sample problems out there, and splitting the group into two
…
2
votes
2answers
53 views
How to use the APT tool to create exercises in course material
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 …
