Ho presentato la mia candidatura online. La procedura ha richiesto 2 settimane. Ho sostenuto un colloquio presso Lendbuzz (Remo, VA) nel mese di set 2025
Colloquio
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.
Ho presentato la mia candidatura tramite l'università. La procedura ha richiesto una settimana. Ho sostenuto un colloquio presso Lendbuzz (Boston, MA) nel mese di dic 2024
Colloquio
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.
Domande di colloquio [2]
Domanda 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’