Solicité el puesto a través de la recomendación de un empleado. El proceso duró 3 semanas. Acudí a una entrevista en Meta (Menlo Park, CA) en jun 2016
Entrevista
First call with recruiter went well and after a few days they told me that I am being invited for an onsite interview with a single interviewer (instead of the phone screen). That interview went well and I was selected for the 2nd "pirate interview". They gave me enough material about what those interviews will be like and how to prepare for them. Everything good so far. I go for the 2nd interviews and I thought I did really well in the interviews. The only gotcha was that I had a lunch with an "interviewer" and that lunch took too long and it shortened the time I had available for my next coding interview. Unfortunately that lack of time resulted in me doing not so well in the coding interview (i.e. not being able to come up with a good working and efficient program) and apparently that resulted into it being a "no go" for me. :-(
Preguntas de entrevista [1]
Pregunta 1
Design the Google search bar that prompts you with suggestions as you type in it. These suggestions are not personalized but based on most popular queries in the past by all Google users. e.g. as you type "Fac" in the search bar the drop down prompts you with "Facebook" or "Facts about Great Britain" and so on based on recent most popular queries. Once designed, optimize this based on feedback from the interviewer (e.g. most users don't see the suggestions within 3 seconds and Google management is complaining about the lack of performance. How will you debug and fix it?)
Recruiter call was pretty standard, first round was 2 Meta tagged LC mediums in 45 minutes. On-site was 2 coding sessions of 2 LC mediums, a system design interview and a behavioral interview with an engineering manager.
Preguntas de entrevista [1]
Pregunta 1
How do you answer if someone asks how long a deliverable or project will take?
The entire process usually takes 3–8 weeks, depending on scheduling and the specific role. Coding interviews heavily emphasize common DSA topics such as arrays, strings, trees, graphs, BFS/DFS, heaps, hash maps, and dynamic programming. System design becomes increasingly important for E4+ positions.
Preguntas de entrevista [1]
Pregunta 1
Given an array of integers and a target value, return the indices of two numbers that add up to the target
Unexpectedly, the first question in the technical round felt familiar. It was about finding a subset of strings with unique character concatenation — same problem I had worked through on PracHub a few days earlier. The interview included a recruiter screen followed by a rigorous pair of technical interviews where I tackled data structures and algorithms alongside system design concepts. After successfully answering a few more challenging DSA questions, I received an offer. The entire experience was intense but ultimately rewarding, and I happily accepted the position.
Preguntas de entrevista [1]
Pregunta 1
Given an array of strings, pick a subset whose concatenation contains no duplicate characters, and return the maximum possible length of that concatenation.