Challenge: Balanced Brackets
Complete this challenge with any kind of Java interop.
We'll cover the following...
Description
The Balanced Brackets challenge is strongly aligned with Clojure. Its main idea is to validate if a composition of brackets is valid, similar to our coding style in Clojure, i.e., for each bracket that’s open, we want to have a corresponding one that’s closed. So, the challenge revolves around ensuring balanced combinations of the three types of brackets shown below:
()
...