Anyone ever gone through a technical coding interview?

yhelothar

Lifer
Dec 11, 2002
18,409
39
91
I've been through a couple. I don't have a computer science background and never took a data structures and algorithms class.

If you're like me and haven't taken one, there's a great course from Udacity for learning data structures and algorithms to pass technical interviews.
https://www.udacity.com/course/technical-interview--ud513

I completed this. I did additional practice on pramp.com and hackerrank.

Some of the most important tricks are being able to get the most efficient algorithm and being able to account for edge cases.

Some technical interviews will be live over the phone or in person. You will need to get good at talking out your thought process. Pramp.com is a great site to practice for that.

codility.com also has a nice set of tutorials to do for learning a number of different algorithms. I went through that and passed a codility coding screen with flying colors.
 

SearchMaster

Diamond Member
Jun 6, 2002
7,791
114
106
I've given a few...

If it was over the phone, we would use Google docs to watch them enter the code. The main thing we were interested in was listening to them explain their thought process as they muddled through the problem, not the actual code itself. Being able to write a function to reverse a string is not an indicator of future success but being able to properly communicate how they're putting together that function is.
 

nakedfrog

No Lifer
Apr 3, 2001
60,167
15,087
136
I've given a few...

If it was over the phone, we would use Google docs to watch them enter the code. The main thing we were interested in was listening to them explain their thought process as they muddled through the problem, not the actual code itself. Being able to write a function to reverse a string is not an indicator of future success but being able to properly communicate how they're putting together that function is.
Yep, I've given quite a few, and this is generally more what we're looking for.