Question: Anagram Solver

###Problem Given a list of input strings, check to see if any anagrams of these strings can be found in a predefined set of valid strings.

###Algorithm The main idea here is to sort the input and sort the valid dictionary terms so there sorted representation looks alike. All these anagrams will have the same sorted representation, and can be placed in a python dict to be looked up in O(1).

###My solution

###Resources

Valid word dictionary

regards

======================================================================

Published: December 28 2014

See an error in this post? Please submit a PR on Github.