예제 #1
0
파일: Test_1_4.cs 프로젝트: jkrez/Interview
        private void ValidateResult(string s, bool expected)
        {
            Assert.AreEqual(
                expected,
                Question_1_4.IsPalindromePermutationFast(s),
                $"IsPalindromePermutationFast failed with {s}");

            Assert.AreEqual(
                expected,
                Question_1_4.IsPalinromePermutationMinSpace(s),
                $"IsPalinromePermutationMinSpace failed with {s}");
        }