[Algorithm] 14 week(4.11 ~ 4.17) 3/3
1614. Maximum Nesting Depth of the Parentheses
var maxDepth = function(s) {
let depth = 0;
const onlyBrakets = s.replace(/[^()]/g, "");
let braketCount = 0;
for (const braket of onlyBrakets) {
if (braket === "(") {
braketCount++;
}
else {
depth = Math.max(braketCount, depth);
braketCount--;
}
}
return depth;
};
Reference
この問題について([Algorithm] 14 week(4.11 ~ 4.17) 3/3), 我々は、より多くの情報をここで見つけました https://velog.io/@miniyoung37/Algorithm-14-week4.11-4.17-33テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol