##Translate Words Challenge
The task at had is that, given a text file, replace all possible words in English to French using any programming language of choice
What is the input?
- A text file that has more than one lakh lines. The file is t8.shakespeare.txt.
- A replace words list that has a 1000 words. The words in the list should be replaced with case being maintained. The file is find_words.txt What needs to be done?
- Find an English to French dictionary
- Read the text file, replace words and dictionary
- Find all words that in the replace words list that has a replacement in the dictionary
- Replace the words in the text file
- save the processed file
What is the expected output?
- Unique list of words that was replaced with French words from the dictionary
- Number of times a word was replace
- Frequency of each word replaced
- Accuracy of the replace in terms of all occurences, casing and special characters to be maintained accurately
- Time taken to process
- Memory taken to process