<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Spell Checking</title>
	<atom:link href="http://programmingpraxis.com/2009/04/17/spell-checking/feed/" rel="self" type="application/rss+xml" />
	<link>http://programmingpraxis.com/2009/04/17/spell-checking/</link>
	<description>A collection of etudes, updated weekly, for the education and enjoyment of the savvy programmer</description>
	<lastBuildDate>Mon, 28 May 2012 03:30:45 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Vikas Tandi</title>
		<link>http://programmingpraxis.com/2009/04/17/spell-checking/#comment-2903</link>
		<dc:creator><![CDATA[Vikas Tandi]]></dc:creator>
		<pubDate>Sat, 23 Apr 2011 05:59:24 +0000</pubDate>
		<guid isPermaLink="false">http://programmingpraxis.wordpress.com/?p=395#comment-2903</guid>
		<description><![CDATA[implemented in c language:
http://codepad.org/PmYVlSN6]]></description>
		<content:encoded><![CDATA[<p>implemented in c language:<br />
<a href="http://codepad.org/PmYVlSN6" rel="nofollow">http://codepad.org/PmYVlSN6</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric H</title>
		<link>http://programmingpraxis.com/2009/04/17/spell-checking/#comment-69</link>
		<dc:creator><![CDATA[Eric H]]></dc:creator>
		<pubDate>Sun, 19 Apr 2009 18:40:49 +0000</pubDate>
		<guid isPermaLink="false">http://programmingpraxis.wordpress.com/?p=395#comment-69</guid>
		<description><![CDATA[Another in scheme:

http://gist.github.com/98166]]></description>
		<content:encoded><![CDATA[<p>Another in scheme:</p>
<p><a href="http://gist.github.com/98166" rel="nofollow">http://gist.github.com/98166</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: veer</title>
		<link>http://programmingpraxis.com/2009/04/17/spell-checking/#comment-68</link>
		<dc:creator><![CDATA[veer]]></dc:creator>
		<pubDate>Fri, 17 Apr 2009 14:08:27 +0000</pubDate>
		<guid isPermaLink="false">http://programmingpraxis.wordpress.com/?p=395#comment-68</guid>
		<description><![CDATA[In scheme :

 http://codepad.org/aHBN2HbM]]></description>
		<content:encoded><![CDATA[<p>In scheme :</p>
<p> <a href="http://codepad.org/aHBN2HbM" rel="nofollow">http://codepad.org/aHBN2HbM</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FalconNL</title>
		<link>http://programmingpraxis.com/2009/04/17/spell-checking/#comment-67</link>
		<dc:creator><![CDATA[FalconNL]]></dc:creator>
		<pubDate>Fri, 17 Apr 2009 09:53:09 +0000</pubDate>
		<guid isPermaLink="false">http://programmingpraxis.wordpress.com/?p=395#comment-67</guid>
		<description><![CDATA[In Haskell:

[sourcecode lang=&#039;css&#039;]
import qualified Data.ByteString.Char8 as B
import Data.Trie

main = do trie &lt;- fmap (fromList . map (flip (,) ()) . B.lines) $ B.readFile &quot;words.txt&quot;
          print $ valid trie &quot;qarter&quot;
   
valid trie = flip member trie . B.pack
[/sourcecode]]]></description>
		<content:encoded><![CDATA[<p>In Haskell:</p>
<pre class="brush: css;">
import qualified Data.ByteString.Char8 as B
import Data.Trie

main = do trie &lt;- fmap (fromList . map (flip (,) ()) . B.lines) $ B.readFile &quot;words.txt&quot;
          print $ valid trie &quot;qarter&quot;
   
valid trie = flip member trie . B.pack
</pre>
]]></content:encoded>
	</item>
</channel>
</rss>

