Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mefellows/code-challenge-brace-balancer
Because I can - create a small little function to balance braces
https://github.com/mefellows/code-challenge-brace-balancer
Last synced: about 2 months ago
JSON representation
Because I can - create a small little function to balance braces
- Host: GitHub
- URL: https://github.com/mefellows/code-challenge-brace-balancer
- Owner: mefellows
- License: mit
- Created: 2015-12-12T11:53:00.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-12T13:24:18.000Z (about 9 years ago)
- Last Synced: 2024-10-11T22:55:32.285Z (2 months ago)
- Language: Go
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Code Challenge - Brace Balancer
Because I can - small little function in Golang to balance braces.## Usage
```
go build -o balancer .
echo "}}}}{{}{{{{}{}}}" | ./balancer
Balancing string: }}}}{{}{{{{}{}}}}} => {{{{}}}}{{}{{{{}{}}}}}
```## TestInputs
```
go test
```