Loading...
The process started with an HR screening where my resume was reviewed, and they asked about my projects. This was followed by a technical phone screen. The main question involved analyzing logs to determine which function was called the most frequently. If the...
This was a full journey interview process. **Coding Round:** I was asked to solve a problem which is similar to Leetcode 849 **Hiring Manager Round:** This round involved standard resume-based questions and a small amount of behavioral questioning. **System De...
The coding question involved wrapping matching phrases in a sentence with `<yellow>` and `</yellow>` tags, merging any overlapping or adjacent matches into a single `<yellow>` block. Here's the problem description: You are given a sentence and a list of matchi...
The interview question was to implement a simplified file system with two functions: * `addFile(String path)`: Stores a file given a string path like `path/to/somewhere/file.txt`. * `getFile(String path)`: Given `path/to/somewhere`, return `file.txt`. Given `p...
I had a phone screen interview for a Machine Learning Engineer position. The coding question was about K-means clustering, and I needed to explain the stopping criteria. The interviewer seemed to focus on details, and I think I was down-leveled because I didn'...
I was asked a layer/document question, which is similar to https://www.chillinterview.com/experiences/33f732d8-ec01-473e-9868-b1d2f562c4fd. The method definition was `apply(id, property, value)`. I had to implement the `init`, `apply`, and `undo` methods in th...
First, I had to determine if a string containing parentheses was valid. I was told that this question is similar to a common LeetCode problem and can be solved using a stack or two pointers to track the number of left and right parentheses. Second, I was asked...
My onsite interview experience with Figma was generally positive, with a very responsive and helpful HR/recruiter team. They provided detailed feedback after the virtual onsite. Most of the interviewers I encountered were nice. However, I had a negative experi...
During the phone screen, I had a coding question: Given the array of strings `['a', 'apple', 'appz', 'b']` and the prefix `'ap'`, find the index of the first word containing the prefix. During the virtual onsite interview, I encountered two coding questions si...