コード例 #1
0
 def test_empty_string(self):
     self.assertTrue(is_palindrome_permutation(""))
コード例 #2
0
 def test_not_palindrome_permutation(self):
     self.assertFalse(is_palindrome_permutation("Hello"))
コード例 #3
0
 def test_is_palindrome_permutation(self):
     self.assertTrue(is_palindrome_permutation("W wop P"))