コード例 #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}");
        }