Exercism/bash/matching-brackets
David Doblas Jiménez 9dea7a1fcc Solution to matching brackets in Bash 2023-07-15 17:36:40 +02:00
..
.exercism Solution to matching brackets in Bash 2023-07-15 17:36:40 +02:00
HELP.md Solution to matching brackets in Bash 2023-07-15 17:36:40 +02:00
README.md Solution to matching brackets in Bash 2023-07-15 17:36:40 +02:00
bats-extra.bash Solution to matching brackets in Bash 2023-07-15 17:36:40 +02:00
matching_brackets.bats Solution to matching brackets in Bash 2023-07-15 17:36:40 +02:00
matching_brackets.sh Solution to matching brackets in Bash 2023-07-15 17:36:40 +02:00

README.md

Matching Brackets

Welcome to Matching Brackets on Exercism's Bash Track. If you need help running the tests or submitting your code, check out HELP.md.

Instructions

Given a string containing brackets [], braces {}, parentheses (), or any combination thereof, verify that any and all pairs are matched and nested correctly. The string may also contain other characters, which for the purposes of this exercise should be ignored.

Source

Created by

  • @glennj

Contributed to by

  • @bkhl
  • @guygastineau
  • @IsaacG
  • @kotp

Based on

Ginna Baker