From aa66d9b83d5793bdbb7fe28368e0642f7c3dceac Mon Sep 17 00:00:00 2001 From: William Carroll Date: Thu, 12 Nov 2020 14:37:29 +0000 Subject: Add coding exercises for Facebook interviews Add attempts at solving coding problems to Briefcase. --- scratch/facebook/permutation-palindrome.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 scratch/facebook/permutation-palindrome.py (limited to 'scratch/facebook/permutation-palindrome.py') diff --git a/scratch/facebook/permutation-palindrome.py b/scratch/facebook/permutation-palindrome.py new file mode 100644 index 000000000000..30603578ffb3 --- /dev/null +++ b/scratch/facebook/permutation-palindrome.py @@ -0,0 +1,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!") -- cgit 1.4.1