I applied online. The process took 2 weeks. I interviewed at Lendbuzz (Remo, VA) in Sep 2025
Interview
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.
I applied through college or university. The process took 1 week. I interviewed at Lendbuzz (Boston, MA) in Dec 2024
Interview
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.
Interview questions [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’