$15
Problem 1 - Anagrams
A common problem in computer science is finding patterns
within data.
This problem will simulate that in a way that is easy to see
what is happening.
A palindrome is a word, phrase, number, or other sequence of
characters which
reads the same backward or forward. Allowances may be made
for adjustments to
capital letters, punctuation, and word dividers.
An anagram is a word, phrase, or name formed by rearranging
the letters of another.
Given a String S, determine if it is an anagram of a
palindrome. Return true if
the String is an anagram of a palindrome, and false otherwise.
For example, the
String “oatrtro” will return true (rotator), while the
String “false” will
return false.
Input format - via txt file:
The first line will contain a integer, the number of test
cases
The following lines will be strings to be evaluated
Output format:
Print true or false to console (STDOUT)
Line separated please
Ex.
4
aabb
abba
xyyxy
axsx
true
true
true
false
Code is provided in Java to run STIN from a text file
Feel free to rewrite this in any language
Click BUY NOW to find Solution
YOU MAY ALSO LIKE :
DIAGONAL SOLN https://sellfy.com/p/v10k/
STAIRS https://sellfy.com/p/Euhi/