Meta Full-loop questions
Summary
I am sharing the full-loop interview questions I encountered at Meta, covering system design, behavioral, and two coding rounds.
Full Experience
Hi, I am giving back to the community by sharing full loop questions.
System Desgin: desgin place recommender near user
Behavioral interview: normal questions; examples of success, what you learn from them ..etc
Interview Questions (6)
Design Place Recommender Near User
Design a system for recommending places near a user.
Behavioral Questions: Success and Learning
Standard behavioral questions, specifically focusing on examples of success and lessons learned from experiences.
Nested List Weight Sum
Given a nested list of integers, return the sum of all integers in the list weighted by their depth. Each element is either an integer or a list (whose elements may also be integers or other lists). (Problem similar to LeetCode 339)
Swim in Rising Water (Minimum Flood Level)
Find the minimum flood level such that you can swim from the top-left to the bottom-right of a grid. (Problem similar to LeetCode 778)
Cheapest Round Flight
Given two arrays representing departure flights and return flights, find the cheapest round trip flight.
Interval List Intersections
Given two lists of closed intervals, each list of intervals is pairwise disjoint and in sorted order. Return the intersection of these two interval lists. (Problem similar to LeetCode 986)