-
Notifications
You must be signed in to change notification settings - Fork 1
/
591.py
44 lines (43 loc) · 1.38 KB
/
591.py
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
class Solution:
def isValid(self, code: str) -> bool:
tags = []
i, n = 0, len(code)
while i < n:
if code[i] != "<":
if not tags:
return False
i += 1
continue
if i == n - 1:
return False
if code[i + 1] == "/":
j = code.find(">", i)
if j == -1:
return False
tagname = code[i + 2: j]
if not tags or tags[-1] != tagname:
return False
tags.pop()
i = j + 1
if not tags and i != n:
return False
elif code[i + 1] == "!":
if not tags:
return False
cdata = code[i + 2: i + 9]
if cdata != "[CDATA[":
return False
j = code.find("]]>", i)
if j == -1:
return False
i = j + 1
else:
j = code.find(">", i)
if j == -1:
return False
tagname = code[i + 1: j]
if not 1 <= len(tagname) <= 9 or not all(ch.isupper() for ch in tagname):
return False
tags.append(tagname)
i = j + 1
return not tags