Esempio n. 1
0
        public void Test1()
        {
            var solution = new LeetCode.P678.Solution();
            var result   = solution.CheckValidString("()");

            Assert.True(result);
        }
Esempio n. 2
0
        public void Test4()
        {
            var solution = new LeetCode.P678.Solution();
            var result   = solution.CheckValidString("(())((())()()(*)(*()(())())())()()((()())((()))(*");

            Assert.False(result);
        }