J'ai postulé en ligne. Le processus a pris 2 semaines. J'ai passé un entretien chez Lendbuzz (Remo, VA) en sept. 2025
Entretien
First round interview was just a phone screening, asking basic questions about background, eligibility, and to clarify requirements. Was invited back for a second round video interview but was rejected after that.
J'ai postulé via un établissement d'enseignement supérieur ou universitaire. Le processus a pris 1 semaine. J'ai passé un entretien chez Lendbuzz (Boston, MA) en déc. 2024
Entretien
First was a basic call to understand me as an individual and my expectations with the role.
After that was an interview with a person on the machine learning team. It consisted of two questions. In the words of the interviewer, the interview was conducted to understand the way I approach questions. This took about an hour.
Questions d'entretien [2]
Question 1
Q1. Given a string of characters, find duplicate adjacent characters and remove them. The result should be the string without any duplicate adjacent characters.
Ex: given string - “aabc”
Output - “bc”
The second question was similar to the first to rearrange the characters if in a string they are adjacent to each other. There must not be no two same adjacent characters. If there is no way to rearrange, return an empty string.
Ex: given string - ‘aabbbcda’
Output- ‘abcbdaba’