-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.ts
62 lines (61 loc) · 1.29 KB
/
index.ts
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/**
* # 20. Valid Parentheses
*
* Given a string containing just the characters `'('`, `')'`, `'{'`, `'}'`, `'['` and `']'`, determine if the input string is valid.
*
* An input string is valid if:
*
* - Open brackets must be closed by the same type of brackets.
* - Open brackets must be closed in the correct order.
*
* Note that an empty string is also considered valid.
*
* ## Example
*
* ```bash
* Input: "()"
* Output: true
* ```
* ```bash
* Input: "()[]{}"
* Output: true
* ```
* ```bash
* Input: "(]"
* Output: false
* ```
* ```bash
* Input: "([)]"
* Output: false
* ```
* ```bash
* Input: "{[]}"
* Output: true
* ```
*/
export type Solution = (s: string) => boolean;
/**
* 消消乐
* @date 2020/07/04 11:16:0
* @time O(n)
* @space O(n)
* @runtime
* @memory
* @runtime_cn 68 ms, faster than 81.50%
* @memory_cn 36.3 MB, less than 100.00%
*/
export const isValid = (s: string): boolean => {
const len = s.length;
if (len % 2 !== 0) return false;
const stack: string[] = [];
for (let i = 0; i < len; i++) {
stack.push(s.charAt(i));
const len = stack.length;
const sum = stack[len - 2] + stack[len - 1];
if (len >= 2 && (sum === "()" || sum === "{}" || sum === "[]")) {
stack.pop();
stack.pop();
}
}
return stack.length <= 0;
};