Me postulé a través de una recomendación de un empleado. El proceso tomó 1 semana. Acudí a una entrevista en Zesty (Tel Aviv) en nov 2022
Entrevista
The interview process was straight to the point, you get to do 3 interviews and a home assignment. The first interview is an interview for the workplace to validate that your skills are as described, general design questions are asked that require Knowledge in microservice, cloud infra and general computer science practices, you are then provided with a home assignment that takes 2 hours, 2nd interview is a high level design interview with the VP followed by a leet code easy problem. 3rd interview is a coding exclusive interview, you are presented with a problem which you should know how to solve in the language you are most comfortable with. The recruiting team is very kind and very nimble with responses, if they want to move forward with you they will let you know immediatley.
Preguntas de entrevista [1]
Pregunta 1
Design questions, Leet Code easy problems, language specific knowledge questions.
Me postulé a través de una agencia de empleos. Acudí a una entrevista en Zesty
Entrevista
A Zoom class with one of the developers of the company. Don't have to be a developer from the team you're interviewing to. Was very nice and polite, talked about the company and the role.
Preguntas de entrevista [1]
Pregunta 1
Take the following func in Python: def func(input1, input2): j = 0 count = 0 ret = "" i = 0 while i < len(input1): ret = ret + input1[i] if input1[i] == input2[j]: j = j + 1 if len(input2) == j ret = ret[0: (i-j)+1] + ("-" * len(input2)) j = 0 count = count + 1 i = i + 1 return ret, count For the following inputs, here's the outputs (for example only): bba, bb => --a, 2. It's like a masking function of the 2nd string inside the 1st string. The question: The function has a small bug, find an input that the function will return an incorrect ouput for it. After that, fix the bug.