Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/samfelgar/brackets-analyser

Analyse sequence of brackets to determine if the openings/closing are in correct order
https://github.com/samfelgar/brackets-analyser

java

Last synced: 16 days ago
JSON representation

Analyse sequence of brackets to determine if the openings/closing are in correct order

Awesome Lists containing this project

README

        

# 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"
```