PracHub
QuestionsPremiumCoachesLearningGuidesInterview Prep
|Home/Coding & Algorithms/Meta

Solve tree view and parentheses cleanup

Last updated: May 15, 2026

Quick Overview

This question evaluates binary tree traversal and view-extraction skills for the right-side view problem and string-processing and minimal-edit balancing for the parentheses cleanup, probing competency in data-structure traversal, state tracking, and correctness under edge cases.

  • medium
  • Meta
  • Coding & Algorithms
  • Software Engineer

Solve tree view and parentheses cleanup

Company: Meta

Role: Software Engineer

Category: Coding & Algorithms

Difficulty: medium

Interview Round: Technical Screen

Solve the following two algorithm problems. 1. Right-side view of a binary tree Given the root of a binary tree, return the values of the nodes that would be visible if you looked at the tree from its right side, listed from top to bottom. Example: - Input: root = [1,2,3,null,5,null,4] - Output: [1,3,4] 2. Remove the minimum invalid parentheses Given a string `s` containing lowercase English letters and the characters `(` and `)`, remove the minimum number of parentheses so that the resulting string is valid. A string is valid if: - every opening parenthesis has a matching closing parenthesis, - parentheses are properly ordered, - letters may appear anywhere and do not affect validity. Return any valid string after the minimum removals. Examples: - Input: `a)b(c)d` Output: `ab(c)d` - Input: `))( (` Output: `` - Input: `(a(b(c)d)` Output: `a(b(c)d)`

Quick Answer: This question evaluates binary tree traversal and view-extraction skills for the right-side view problem and string-processing and minimal-edit balancing for the parentheses cleanup, probing competency in data-structure traversal, state tracking, and correctness under edge cases.

Related Interview Questions

  • Find Shortest Unique Prefixes - Meta (medium)
  • Compute Exclusive Execution Times - Meta (medium)
  • Solve Tree Columns And Maze Variants - Meta (medium)
  • Solve Tree Diameter and Palindromic Counts - Meta (medium)
  • Simulate Monster Team Battles - Meta (hard)
Meta logo
Meta
Feb 1, 2026, 12:00 AM
Software Engineer
Technical Screen
Coding & Algorithms
5
0

Solve the following two algorithm problems.

  1. Right-side view of a binary tree

Given the root of a binary tree, return the values of the nodes that would be visible if you looked at the tree from its right side, listed from top to bottom.

Example:

  • Input: root = [1,2,3,null,5,null,4]
  • Output: [1,3,4]
  1. Remove the minimum invalid parentheses

Given a string s containing lowercase English letters and the characters ( and ), remove the minimum number of parentheses so that the resulting string is valid.

A string is valid if:

  • every opening parenthesis has a matching closing parenthesis,
  • parentheses are properly ordered,
  • letters may appear anywhere and do not affect validity.

Return any valid string after the minimum removals.

Examples:

  • Input: a)b(c)d Output: ab(c)d
  • Input: ))( ( Output: ``
  • Input: (a(b(c)d) Output: a(b(c)d)

Submit Your Answer to Earn 20XP

Sign in to leave a comment

Loading comments...

Browse More Questions

More Coding & Algorithms•More Meta•More Software Engineer•Meta Software Engineer•Meta Coding & Algorithms•Software Engineer Coding & Algorithms
PracHub

Master your tech interviews with 8,000+ real questions from top companies.

Product

  • Questions
  • Learning Tracks
  • Interview Guides
  • Resources
  • Premium
  • For Universities
  • Student Access

Browse

  • By Company
  • By Role
  • By Category
  • Topic Hubs
  • SQL Questions
  • Compare Platforms
  • Discord Community

Support

  • support@prachub.com
  • (916) 541-4762

Legal

  • Privacy Policy
  • Terms of Service
  • About Us

© 2026 PracHub. All rights reserved.