using System;
public class Program
{
public static void Main()
var result = IsBalanced("{}");
Console.WriteLine(result);
}
//Find if a string containing '{' and '}' are balanced, meaning there is a open bracket with a matching close (think the way Visual Studio validates a method)
//'{}{}' = T
//'{}' = T
//'}{' = F
public static bool IsBalanced(string str)
return true;