Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 275 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 275 Bytes

Brackets analyser

This is just a challenge solving project. Its goal is to analyse strings containing brackets and determine if the opening/closing order is correct.

Examples

"{([])} is valid"
"{([)]} is invalid"
"{([({})])} is valid"
"({{{[()]}}}) is valid"