I applied through an employee referral. The process took 5 days. I interviewed at Drivetrain (Mumbai) in Oct 2024
Interview
Comprises of multiple rounds, starting off with shortlisting followed by a general algorithm coding round. For the algorithm coding round, it's a live on-call coding round where the interviewer gives a general competitive coding problem that the candidate has to solve in their preferred programming language (or pseudocode).
Interview questions [1]
Question 1
Given a string s, find the length of the longest substring without duplicate characters.
Example 1:
Input: s = "abcabcbb"
Output: 3
Explanation: The answer is "abc", with the length of 3. Note that "bca" and "cab" are also correct answers.
Example 2:
Input: s = "bbbbb"
Output: 1
Explanation: The answer is "b", with the length of 1.
Example 3:
Input: s = "pwwkew"
Output: 3
Explanation: The answer is "wke", with the length of 3.
Notice that the answer must be a substring, "pwke" is a subsequence and not a substring.