Wednesday, April 20, 2016

LeetCode Q266: Palindrome Permutation

Given a string, determine if a permutation of the string could form a palindrome.
For example,
"code" -> False, "aab" -> True, "carerac" -> True.

Solution:

No comments:

Post a Comment