This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/usr/bin/python3 | |
| # By Steve Hanov, 2011. Released to the public domain. | |
| # Updated 2014 to use DAWG as a mapping. | |
| import sys | |
| import time | |
| DICTIONARY = "/usr/share/dict/words" | |
| QUERY = sys.argv[1:] | |
| # This class represents a node in the directed acyclic word graph (DAWG). It |