Write a code to find out if two string words are anagrams
Anonimo
differrent ways: 1. sort them and strcmp() 2. hash them ( function should be independent of characte sequence) and if they map to same value they are anagrams. 3. assign primary numbers to each letter of the word. get the product. do the same with target. if product matches then they are anagrams.