Is this your company?
Write a program to determine if a character array is an anagram of another character array.
Anonymous
Use an additional int array which has the length of all characters. Traverse the first array. For each character, add one to the corresponding element(index = (int)(character)) of the int array. Then, for the second array, traverse it and minus one for the corresponding element. Then, traverse the int array and check whether every element is 0.
Check out your Company Bowl for anonymous work chats.