by Andy Tiffany

When it comes to whiteboard coding interviews, remember to PREP

1*vLadxMniF0KW0HWeGkipJw

PREP is a mnemonic I created to help you remember the steps involved in solving whiteboard coding problems. It stands for Parameters, Return, Example, Pseudocode.

1*vbQ8FGNAlEC4jnxg8Z7Ceg

The mnemonic is new, but the underlying technique is battle tested. This is essentially a beginner-friendly version of test-driven development that lends itself well to coding challenges.

Let’s get right to it and learn PREP through an example problem. We’ll use JavaScript, but this technique works for just about any programming language.

Your interviewer asks you to write a function that accepts a sentence and returns the longest word. What do you do?

“P” is for Parameters

Most problems involve writing a function. In this step you need to determine what parameters your function should accept. Then you need to give them meaningful names.

Keywords like “takes in” or “accepts” in the problem statement will guide you here. If it’s unclear, you can also ask the interviewer for clarification. In your case, the statement “accepts a sentence” tells you that the function should accept a single string parameter.

So you’ve determined the type of your parameter. But what should you name it? It might sound simple, but good naming is a crucial programming skill, and it takes practice.

You could call yours “sentenceString,” but calling it “sentence” is more concise and still makes it clear we’re dealing with a string.

Since this is your first step, you also need to think of a meaningful name for your function itself. In your case, “longestWord” is both concise and descriptive. Now that you’ve decided this, you can write the shell for your function like this:

“R” is for Return

What does this function return? Is it a number? A boolean? A string?

Remember: the value a function returns is not the same as what it might display in a print/log statement.

Once again, you can look at the problem statement for clarification. “Returns the longest word” tells you that you’re returning a word, and you know that words are strings. Let’s make this crystal clear by creating a variable to represent this return value and rigging up your function to return it. Even though you aren’t returning the correct answer yet, you’re set up to return the correct type. You have created a placeholder that will make the next steps easier.

“E” is for Example

Even for expert developers, static code is harder to understand than running code. You want to make your code runnable and “alive” as soon as possible. You can breathe life into your function with an example test invocation.

You know that if your function accepts the sentence, “I saw a hippopotamus,” it should return the string “hippopotamus” once it’s properly working. But for now, you just want to see your placeholder value from the last step to confirm your code is runnable and setup correctly.

The last “P” is for Pseudocode

While it’s tempting to just dive in and start coding now, it would be too easy to get caught up in a detail that could distract you from the bigger picture. You need to devise a strategy first, and pseudocoding is just the tactic for this.

Pseudocode is a series of precise statements written in spoken language comments that describe what you need to do.

You’ve finished PREP. Now you can code!

The four steps in PREP helped you clearly frame the problem and think about how to solve it. In truth, accurate framing is half the battle. Most interviewers will already be impressed to see your methodical approach. At this point, your goal is to just write code that will make your examples and tests pass. You’ll do this by encoding each of your pseudocode steps.

You know you’ve got a working solution when you can run your code and see the correct output.

You’ve made it through the hardest part now. You can breathe a sigh of relief that you’ve at least gotten to a working solution. At this point, there are just two more questions to think about:

  • Are there any edge cases that would break the code? For example, do you need to take into account sentences that have a period at the end of them? You’ll write more test cases for these edge cases, then fix the code if necessary.
  • Can you make the code cleaner or more efficient now? You should discuss ideas with the interviewer so that they know your thoughts before risking breaking the solution.

That’s it! This process might seem overly mechanical at first, but trust me, it will become second nature — much like the steps in learning to drive. Even after programming for more than 12 years, this is still roughly the sequence I follow when I’m problem solving. I’d more likely use a formal testing framework instead of log statements like we did here, but the steps are the same either way.

Now you try it! Here are a few beginner-level problems you can practice with, in roughly ascending order of difficulty:

  1. Suppose you have an array of string like [ “adios”, “bye”, “ciao” ]. Your task is to write a function called total_characters that accepts such an array as a parameter and returns the summed number of characters across all the strings in the array.
  2. Write a function to flip a coin n times that returns the numbers of times a “heads” was flipped.
  3. (From Free Code Camp) We’ll pass you an array of two numbers. Return the sum of those two numbers, and all numbers between them. The lowest number will not always come first. Try using PREP to set this up yourself first, but then feel free to confirm your setup and finish solving it here.

PREP has already helped several First Step Coding learners ace their coding interviews, and I hope it can help you too. Happy coding!

If you liked this, click the ? below so other people will see this here on Medium.