-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path20-valid-parentheses.js
27 lines (27 loc) · 1.12 KB
/
20-valid-parentheses.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
* @param {string} s
* @return {boolean}
*/
var isValid = function (s) {
let stack = []; // create an empty stack to store opening brackets
for (let c of s) {
// loop through each character in the string
if (c === "(" || c === "{" || c === "[") {
// if the character is an opening bracket
stack.push(c); // push it onto the stack
} else {
// if the character is a closing bracket
if (
!stack.length || // if the stack is empty or
(c === ")" && stack[stack.length - 1] !== "(") || // the closing bracket doesn't match the corresponding opening bracket at the top of the stack
(c === "}" && stack[stack.length - 1] !== "{") ||
(c === "]" && stack[stack.length - 1] !== "[")
) {
return false; // the string is not valid, so return false
}
stack.pop(); // otherwise, pop the opening bracket from the stack
}
}
return !stack.length; // if the stack is empty, all opening brackets have been matched with their corresponding closing brackets,
// so the string is valid, otherwise, there are unmatched opening brackets, so return false
};