5 Years of Coding Interview Lessons — in 2 Minutes

5 Years of Coding Interview Lessons — in 2 Minutes

·

2 min read

Career tip for developers

In the last 5 years, I have given 20+ coding interviews.

As a result, my approach to preparing and giving them has significantly changed.

Reflecting on my mistakes, I have documented my learnings in 28 lessons that I wish I had known sooner. 🥲

These will help you in leveling up for programming interviews.

Let's go :rocket:

  1. You only get better by solving more problems.

  2. Pick only ONE programming language you are extremely familiar with.

  3. The biggest mistake you can make is ignoring the fundamentals.

  4. Learn and practice topics in order of importance.

  5. Prioritize practicing the most popular and frequently asked interview questions.

  6. Look for key patterns that help you solve multiple problems.

  7. Revising questions is underrated. That’s how you internalize topics.

  8. Gather maximum detail about the interview beforehand.

  9. Understanding the problem is the primary step of problem-solving.

  10. Clarify the question even if it’s clear to you.

  11. Come up with more examples to test your understanding.

  12. Break down complex questions into small independent questions.

  13. Think of multiple solutions before committing to one.

  14. It’s ok to take notes during the interview.

  15. Whenever stuck, start with a brute-force solution.

  16. Explain the solution approach before writing code.

  17. Solution first. Optimization later.

  18. Let your interviewer know before optimizing the solution.

  19. Prioritize optimizing repeated, overlapping or redundant computation.

  20. For complex algorithms, write pseudo code first.

  21. Explain your thought process while writing code.

  22. Your solution is as good as how well you communicate it.

  23. Step through the code like a debugger to catch bugs.

  24. Show your code works by testing it with sample inputs.

  25. Discuss how your provided solution can be improved.

  26. Prepare well for self-introduction and final questions.

  27. Mock interviews are a great way to make gaps in your preparation visible.

  28. Irrespective of the result, reflect on your interview experience.

That's it!

I hope you find these lessons helpful.

If you liked this post, follow me for more of these 🙂

Also, share a coding interview lesson that you learnt the hard way in comments 👇