Panda Guru LogoPanda
Guru

Meta Phone Screen

Round 1

Questions:

  1. Kth Largest Element in an Array
  2. Minimum Remove to Make Valid Parentheses

Test Cases for Question 1:

Test Cases for Question 2:

Candidate's Approach
  • For the first question, the candidate used a min-heap to store the top K elements.
  • For the second question, the candidate initially used a Stack but realized that a count approach would have been more efficient for checking open and closed brackets.
Interviewer's Feedback

No feedback provided.