Python Kata by @nhumrich of the Pythondev Slack communtiy.
Write a function that takes in a string, and returns a string with everything inside curly brackets
{}removed. Example:hello {world}returnshello {}. Example 2:{hello} {world}returns{} {}Only submissions that DO NOT use regex will be accepted for taco's
tacos for: 1st, cleanest, shortest, fastest, my choice
nested doesn't count. So
{ hello {something} there}should return:{}