Joel mentioned on podcast #74 at one of the DevDays, someone wrote the google spell checker in python and Jon Skeet tried to write the same algorithm in C#.
Does anyone know where I can find both code samples?
|
Joel mentioned on podcast #74 at one of the DevDays, someone wrote the google spell checker in python and Jon Skeet tried to write the same algorithm in C#. Does anyone know where I can find both code samples?
| ||||
feedback
|
|
Peter Norvig's Python code is easy to find. I haven't found time to get back to the C# version I'm afraid, although other people have posted their own C# versions. I'm going for one which uses the same ideas but is actually readable rather than just as short as it can be. When I eventually get round to finishing it, I'll blog about it. Oh, and to counter what seems to be a popular myth - this isn't the Google spelling checker. It's a spelling checker which shows some interesting ideas. Google Web Search doesn't run in 50 lines of Perl, either :) | |||
feedback
|