20. Valid Parentheses

    1. 用栈来解决
      1. 左括号都可可入栈
      2. 右括号
        1. 如果遇到匹配的括号对,则出栈
        2. 否则 return false