Meta screening. US/ MLE L5.

meta logo
meta
MLE L5US
July 22, 202515 reads

Summary

I had a Meta screening for an MLE L5 role in the US. The interview included two coding questions: one specifically linked to a LeetCode problem, and another involving merging two sorted lists of intervals. Although I didn't fully complete the second problem, my focus on communication and the interviewer's guidance helped me advance to the full-loop interview.

Full Experience

Questions from Meta screening:

a) https://leetcode.com/problems/buildings-with-an-ocean-view/description/
b) Merge two lists having intervals. Lists are sorted by the first element of interval.

I did (a) well but wasn't able to fully code (b). I focussed on communicating my thought process well and the interviewer helped me in bringing back on track in (b).

Surprisingly, I got moved to the full-loop; though I am aware I need to step up my game like anything.

Interview Questions (2)

Q1
Buildings With an Ocean View
Data Structures & AlgorithmsMedium

You are given an integer array heights where heights[i] represents the height of a building at index i. You are looking for buildings that have an ocean view. A building has an ocean view if all the buildings to its right are strictly shorter. Return a list of the indices of buildings that have an ocean view, sorted in increasing order.

Q2
Merge Two Sorted Interval Lists
Data Structures & Algorithms

Merge two lists having intervals. Lists are sorted by the first element of interval.

Discussion (0)

Share your thoughts and ask questions

Join the Discussion

Sign in with Google to share your thoughts and ask questions

No comments yet

Be the first to share your thoughts and start the discussion!