Solicité el puesto a través de la escuela superior o la universidad. El proceso duró más de 1 semana. Acudí a una entrevista en Stripe en oct 2015
Entrevista
Did not apply, as I spoke with a recruiter at a college fair. I had a thirty minute phone screen, which was a formality as mine was scheduled right before this step was phased out and so consisted of an explanation of the interview process and a chance for me to ask questions. Had a one hour tech screen over Skype. They allow you to Google any questions you may have and are also there to provide help with whatever you may need, but they expect you to be properly set up in your environment (helpful to have started a project prior) and to be able to be productive in that environment.
Preguntas de entrevista [2]
Pregunta 1
Write nextServerNumber(int[]) which takes a list of numbers and returns the smallest number within [1, infinity), that is not included in the list.
nextServerNumber([1]) = 2
nextServerNumber([1,2,5]) = 3
nextServerNumber([]) = 1
Create a ServerManager class with the functions allocate(string) and deallocate(string) to the following specifications:
allocate('apibox') = 'apibox1'
allocate('apibox') = 'apibox2'
allocate('sitebox') = 'sitebox1'
allocate('apibox') = 'apibox3'
deallocate('apibox2')
allocate('apibox') = 'apibox2'