Skip to content

TalhaDemirtas/Paranthesis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

Challenge

Given a string containing just the char '(' , ')' , '[' , ']' , '{' , '}'

Determine if the 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 1: Input : '( )' Output : True

Example 2: Input : '( ) [ ] { }' Output : True

Example 3: Input : '( ]' Output : False

Example 4: Input : '( [ ) ]' Output : False

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages