超过0.00%的提交代码。。呜呜呜 * * @param n int整型 * @return string字符串一维数组 */ function generateParenthesis( n ) { // write code here let res=[] let string="" if(n==0){return res} build(n,n,string,res) return res } function build(n,m,str,res){ let i=n//( let j=m//) con...