Write a function that takes a string of brackets and checks whether they are balanced or not. The sequence is balanced if:
is_balanced("{[()]}") ➞ true is_balanced("[()]{}") ➞ true is_balanced("{[([)]]}") ➞ false
Return nil if no input is given.
nil