Ho presentato la mia candidatura online. La procedura ha richiesto 2 settimane. Ho sostenuto un colloquio presso GoDaddy nel mese di apr 2015
Colloquio
Simple chatty screening to see if you are still interested in the job. Then a 1 hour technical live coding interview.
The interview questions were beginner level, but the coding exercise I thought was pretty advanced. just one question, pass or fail.
I actually thought this was more advanced knowledge than the senior level interviews I've had.
Domande di colloquio [2]
Domanda 1
Given two strings of words create an algorithm to return all the words that occur in only one of the two strings. A word can be in one string many times and still pass as long as it's not in the other.
Using a nested for() loop is inefficient, can you do it more efficient than the native String.indexOf() method? Without nesting for loops or recursion.