Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/samfelgar/brackets-analyser
- Owner: samfelgar
- Created: 2024-01-26T22:19:46.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-01-26T22:23:31.000Z (12 months ago)
- Last Synced: 2024-11-08T14:13:29.869Z (2 months ago)
- Topics: java
- Language: Java
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
```