给定一个字符串A和其长度n,请返回一个bool值代表它是否为一个合法的括号串(只能由括号组成)。 测试样例: "(()())",6 返回:true 测试样例: "()a()()",7 返回:false 测试样例: "()(()()",7 返回:false
加载中...
import java.util.*; public class Parenthesis { public boolean chkParenthesis(String A, int n) { // write code here } }
class Parenthesis { public: bool chkParenthesis(string A, int n) { // write code here } };
# -*- coding:utf-8 -*- class Parenthesis: def chkParenthesis(self, A, n): # write code here
class Parenthesis { public bool chkParenthesis(string A, int n) { // write code here } }