• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Anyone ever gone through a technical coding interview?

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.
 
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.
 
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.
 
Back
Top