Programming

Simple Programming Exercises, Part II

Posted by Stephen on May 30, 2006 in Computing, Programming, Stuff

Here are some more simple programming exercises: Implement atoi() Implement itoa() I got these ideas from Joel Spolsky’s article on conducting job interviews. As with before, I solved both problems with a pen and paper, since that’s what I’d have in a real job interview. Here is my implementation of atoi(3): int atoi(char* str) { int last; […]

Simple Programming Exercises

Posted by Stephen on May 24, 2006 in Computing, Programming, Stuff

Since joining LVC, I haven’t been writing programs, and since I’ll be entering the job market soon, I’m worried that my programming skills are getting rusty. To get back into the swing of things, I’ve been working on some short, five-minute exercises to clear the cobwebs from my brain. I’ve heard that these […]