我们需要编写一个 JavaScript 函数,该函数接受平衡的方括号字符串 str 作为第一个也是唯一的参数。
我们的函数应根据以下规则计算并返回字符串的分数 -
[] 的分数为 1
[A] 的得分为 2 * A,其中 A 是平衡括号字符串。
例如,如果函数的输入是
输入
const str = '[][]';
输出
const output = 2;
以下是代码 -
const findScore = (str = '') => { const arr = [] for(const char of str) { arr.push(char) while(arr[arr.length - 1] === ']') { arr.pop() if(arr[arr.length - 1] === '[') { arr.pop() arr.push(1) } else { let num = arr.pop() while(arr[arr.length - 1] >= 1) { num += arr.pop() } arr.pop() arr.push(2 * num) } } } return arr.reduce((acc, a) => acc + a, 0) }; console.log(findScore(str));
2
以上是在 JavaScript 中查找括号分数的详细内容。更多信息请关注PHP中文网其他相关文章!