Musings, rants and questions about happiness at work.

How To Pass A Coding Test

This post first appeared on the Lonely Planet Engineering Blog

Like a lot of developers one of the things I do at work is review coding tests. By my rough calculations 85% of potential hires are eliminated at this stage of the hiring process. Often the experience and achievements described in a resume don’t match at all with the quality of code they send through to us. So either they’re telling big fat resume lies, or there are a lot of people who aren’t getting the results they expect. If you’re in the latter group, this post is for you.


TL;DR
Consider the person who has to read/run your coding test and do everything you can to make their job easier. Represent your very best professional practices with the code you submit.


The people reading your code test will be working through hundreds of them. If they’re language agnostic with their hires, they’ll be seeing solutions written in a wide variety of languages and demonstrating the entire breadth of the software quality spectrum. The few who submit readable, simple, extendable, reliable and performant applications make it through to the interview stage. Filtering down to these few is an incredibly time-consuming and often very frustrating process. As you write your coding test remember to treat the end users of that test (the hirers) as the very important and time-poor people that they are. Here’s a few methods you can use:

Read the Instructions, Meet the Requirements

This may seem obvious, but even the better quality tests we’ve received often leave out a requirement or two. If they say submit your code via a github repo then do it. If they say write an application that takes two parameters, a username and a shoe size, then do that. If they say output .json files do that. If you have questions about the requirements don’t be afraid to ask. When we receive a test that doesn’t meet the straightforward test requirements we lose faith in that candidate’s ability to build code to satisfy our clients’ complex and challenging requirements. If you think your best solution can’t meet the requirements then it’s essential to negotiate that before submission, otherwise all you are demonstrating is poor attention to detail or an inability to listen.

Include a README

Just because you know how to run your app doesn’t mean the person looking at your test does. They can spend 20 minutes of their precious time reading your source code and reverse engineering it to work out where your main class is and the command to run it. Or you can just tell them. By not spelling it out you are moving your application closer to the reject pile. If you’re doing the test in a language they’re not currently working in then be more explicit with your instructions. If they’re not Rubyists then tell them which version of Ruby to install along with some instructions on how to install it. Likewise C compilers, Java package managers, .NET versioning and so on can all turn into a big time-sink of Googling, reading man pages and frustration. So be considerate, explicit and accurate in your README.

Write Production-Quality Code

Write code that is as similar to production-level code as possible, given the constraints on your time. If the coding test is the first stage in the application process, all the hirer knows about you is what you tell them in your code. One giant class named Test with three epic methods named process_1, process_2 and process_3 and no tests tells us everything we need to know; you aren’t getting anywhere near our precious production code. Likewise, leave out the TODOs. We don’t like them in our code base and they don’t do you any favours in a test. // TODO: Implement error handling is not a selling point for your coding skills. These may seem like extreme examples, but too many of the coding tests we receive look like something hacked together by a second year Comp Sci student pulling an all-nighter, and not the production-quality code we’re looking for.

Write Tests!

There aren’t many things that will mean an automatic “no thanks” but lack of tests or extremely sparse or poorly implemented tests are one of them. Reliable code is made so in part by an intelligently-implemented test suite. If you don’t provide one I have to conclude you write code that isn’t that reliable.

Design an App

Even the simplest of applications can be split into a data model class, a display/runner class and some logic between the two. Design your solution to be robust, extensible and simple and then we’ll know you can do the same thing for us. Yes, those principles involve trade-offs, and how you make those trade-offs will tell us a lot about what you think is important. Of course your audience will differ, but the best thing you can do is try to strike a balance between them. If you pick one and optimise for that at the expense of the others you’re making assumptions about what we’re looking for that may end up with your code in the reject pile.

Include Some Error Handling

Picture this: I run your code from the command line, it exits immediately with no error messages or any other kind of output. If I can, I’ll spend the time inserting random debugging statements into your code in the hope of finding the error. More than likely I won’t have that kind of time to spare, so I put you straight in the reject pile. Help us out by adding some error handling, preferably with stack traces (it’s okay, we’re coders, we can read stack traces) and you’ll greatly increase your chances of making it onto the “interview” pile.

Pay Attention

A key quality of a good developer is attention to detail. Here’s a list of detail that some developers thought were not important, but we reckon they are:

Going for a job is a nerve-wracking process; no one likes to be judged. Writing code does have a strong creative element so what appeals to one person isn’t necessarily going to appeal to another. However, it’s my hope that by following these guidelines you can maximise your chances of getting through to the next stage in the hiring process. Have fun and good luck!

Disclaimer: Of course not all this advice will apply to all coding tests or reviewers so use with a dollop of your own common sense.

08 Aug 2015