0
votes
6answers
31 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 do …
-2
votes
3answers
102 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 …
3
votes
5answers
228 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
…
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 esse …
57
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-li …
0
votes
2answers
119 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 fe …
10
votes
14answers
285 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 le …
19
votes
13answers
808 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 …
0
votes
4answers
85 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 rubyqu …
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 Testi …
12
votes
14answers
562 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 conversi …
9
votes
3answers
106 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 improve …
4
votes
4answers
120 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 t …
2
votes
2answers
52 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, bu …
2
votes
3answers
123 views
What’s the explanation for Exercise 1.4 in SICP?
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. …
