Balanced Brackets, write a function that takes a string of brackets and checks whether they're balanced or not, using the Stack class
public class BalancedBrackets {
public static void main(String[] args) {
System.out.println(isBalanced("({[]})"));
}
public static boolean isBalanced(String sequence) {
// implemente here
return true;
}
}