about summary refs log tree commit diff
path: root/users/wpcarro/scratch/facebook/permutation-palindrome.py
blob: 30603578ffb38324ce76882da71c589af2394153 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from collections import Counter

def is_palindrome(x):
    return len([count for _, count in Counter(x).items() if count % 2 == 1]) <= 1


xs = [("civic", True),
      ("ivicc", True),
      ("civil", False),
      ("livci", False)]

for x, expected in xs:
    result = is_palindrome(x)
    print(x)
    print(result)
    assert result == expected
    print("Success!")