To the Top
File:  root - text - article - 2019 - 10 - daily-problem-validate-balanced-parentheses.txt
Tags: 每日算法, 括号匹配, 面试, Python, daily problem, Validate Balanced Parentheses, algorithms, twitter interview question, python, | English | Home Page | Category: Computing | 214 Views, 17701 Search Bots | 161 Words

Subscribe to Feed Burner | Browse | Archive
Hi, here's your problem today. This problem was recently asked by Uber:

Imagine you are building a compiler. Before running any code, the compiler must check that the parentheses in the program are balanced. Every opening bracket must have a corresponding closing bracket. We can approximate this using strings.

Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.
An input string is valid if:
- Open brackets are closed by the same type of brackets.
- Open brackets are closed in the correct order.
- Note that an empty string is also considered valid.

Example:
Input: "((()))"
Output: True

Input: "[()]{}"
Output: True

Input: "({[)]"
Output: False


class Solution:
def isValid(self, s):
# Fill this in.

# Test Program
s = "()(){(())"
# should return False
print(Solution().isValid(s))

s = ""
# should return True
print(Solution().isValid(s))

s = "([{}])()"
# should return True
print(Solution().isValid(s))
Tags: 每日算法, 括号匹配, 面试, Python, daily problem, Validate Balanced Parentheses, algorithms, twitter interview question, python, | English | Home Page | Cateogry: Computing | 214 Views, 17701 Search Bots | 161 Words Subscribe to Feed Burner

Related Articles

  1. Daily Interview Problem: Longest Substring With K Distinct Characters
  2. Binary Tree Level with Minimum Sum
  3. [Daily Problem] Angles of a Clock
  4. Daily Interview Puzzle: Ways to Traverse a Grid
  5. [Daily Problem] Remove k-th Last Element From Linked List
  6. Daily Interview Problem: Given two arrays, write a function to compute their intersection.
  7. Algorithm Interview Question: Find the Single Element in an Array of Duplicates
  8. Daily Interview Problem: Largest BST in a Binary Tree
  9. Algorithm Interview: Shifted String
  10. Daily Interview Problem: Validate Binary Search Tree

Comments (0)

    Be the first one to comment this page !


Page Edited: October 30 2020 14:21:09 | RSS Subscription
How to Cook a Perfect Steak? | <meta name="robots" content="noindex, follow" />