FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
algorithms/stack/valid_parenthesis.py at master · softside/algorithms · GitHub
softside
/
algorithms
Public
forked from
keon/algorithms
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
algorithms
/
stack
/
valid_parenthesis.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
38 lines (33 loc) · 925 Bytes
Breadcrumbs
algorithms
/
stack
/
valid_parenthesis.py
Copy path
File metadata and controls
38 lines (33 loc) · 925 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
"""
Given a string containing just the characters
'(', ')', '{', '}', '[' and ']',
determine if the input string is valid.
The brackets must close in the correct order,
"()" and "()[]{}" are all valid but "(]" and "([)]" are not.
"""
def
is_valid
(
s
:
"str"
)
->
"bool"
:
stack
=
[]
dic
=
{
")"
:
"("
,
"}"
:
"{"
,
"]"
:
"["
}
for
char
in
s
:
if
char
in
dic
.
values
():
stack
.
append
(
char
)
elif
char
in
dic
.
keys
():
if
stack
==
[]:
return
False
s
=
stack
.
pop
()
if
dic
[
char
]
!=
s
:
return
False
return
stack
==
[]
if
__name__
==
"__main__"
:
paren
=
"[]"
print
(
paren
,
is_valid
(
paren
))
paren
=
"[]()[]"
print
(
paren
,
is_valid
(
paren
))
paren
=
"[[[]]"
print
(
paren
,
is_valid
(
paren
))
paren
=
"{([])}"
print
(
paren
,
is_valid
(
paren
))
paren
=
"(}"
print
(
paren
,
is_valid
(
paren
))
Back
|
FazBrowse Home
|
New Git URL