Empresa engajada
Given an array of Strings, determine if a string and anagram pair exists.
Sigiloso
First sort each character of each string alphabetically and store resulting string values in a Set. Check if the length of the Set and input array match. If not, then a string/anagram pair exists.