Loading...
I received an interview invitation from a Meta recruiter on LinkedIn for a Research Engineer position. I have over two years of experience in search, advertising, and recommendation system architecture and algorithms. **Phone Screen:** This round was a team ma...
Q1. - Filter and display ERROR level logs only. - Deduplicate logs within a rolling one-minute window, retaining the first occurrence as the reference timestamp. - Treat the same error from a different service as a unique entry and print it. - Discussed space...
In my phone interview, I was asked one coding question (which i saw in https://www.chillinterview.com/learn/coding-interview-questions/cloud-credit-balance-replay) and one system design question about designing a payment processor.
I was asked to implement file system operations represented by a tree structure. There are two types of nodes: * `DirectoryNode`: Has children, which can be a mix of directory or file nodes. * `FileNode`: Has an `is_encrypted` attribute. **Part 1:** Implement...
I completed an online assessment consisting of three coding questions: 1. Given two integer arrays `a` and `b` of the same length and an integer `k`, each index `i` contributes `min(a[i], b[i])` to a total sum. I could choose at most `k` indices to double thei...