We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
A Basic Spell Checker
A Basic Spell Checker
Sort by
recency
|
15 Discussions
|
Please Login in order to post a comment
I am getting Your code did not execute within the time limits error, whenever I submit code. Used the concept of Levenstain distance in python2.
I guess you're using Levenshtein Distance (LD) to compare the word-to-be-corrected with (correct) words in a dictionary. Do you scan the dictionary linearly ( O(n) ), or using some kind of sorting ( O(log(n)) ) or hashing ( O(k) )?
Guys you can refer this video for learning about basics of spell checker.
For help, you can follow up the link:
https://github.com/nishant-sethi/HackerRank/
can i get python code for spell checker tool as it is not available in hackerrank plz send the code its urgent
Hi how can I call the corpus file provided into the Python editor in Hackerrank?
I have already done up the code in my editor, just unsure how to receive input and create the list of words from the corpus provided.