<?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/"
		>
<channel>
	<title>Comments on: N-Queens in a Tweet</title>
	<atom:link href="http://paulbutler.org/archives/n-queens-in-a-tweet/feed/" rel="self" type="application/rss+xml" />
	<link>http://paulbutler.org/archives/n-queens-in-a-tweet/</link>
	<description></description>
	<lastBuildDate>Thu, 09 Feb 2012 16:01:42 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Famous Anonumous</title>
		<link>http://paulbutler.org/archives/n-queens-in-a-tweet/#comment-7038</link>
		<dc:creator>Famous Anonumous</dc:creator>
		<pubDate>Wed, 29 Sep 2010 09:14:02 +0000</pubDate>
		<guid isPermaLink="false">http://paulbutler.org/?p=145#comment-7038</guid>
		<description>Nice article.

Another usefull site about the N queen puzzle is &lt;a href=&quot;https://sites.google.com/site/nqueensolver/&quot; rel=&quot;nofollow&quot;&gt;this&lt;/a&gt; which describes varius fast algorithms and has source codes and executables for download.</description>
		<content:encoded><![CDATA[<p>Nice article.</p>
<p>Another usefull site about the N queen puzzle is <a href="https://sites.google.com/site/nqueensolver/" rel="nofollow">this</a> which describes varius fast algorithms and has source codes and executables for download.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mkeblx</title>
		<link>http://paulbutler.org/archives/n-queens-in-a-tweet/#comment-217</link>
		<dc:creator>mkeblx</dc:creator>
		<pubDate>Thu, 12 Nov 2009 21:54:36 +0000</pubDate>
		<guid isPermaLink="false">http://paulbutler.org/?p=145#comment-217</guid>
		<description>Taking @Jon and improving on that line of thought wouldn&#039;t it make the most sense to use the best language for the job? Surely there is a language that has this algorithm built into it at a core level, and not in a supplementary standard library.

Perhaps:
NQueens n(8) //NQueens is a fundamental data type
print(n)

21 characters is all. Haskell is verbose in comparison.</description>
		<content:encoded><![CDATA[<p>Taking @Jon and improving on that line of thought wouldn&#8217;t it make the most sense to use the best language for the job? Surely there is a language that has this algorithm built into it at a core level, and not in a supplementary standard library.</p>
<p>Perhaps:<br />
NQueens n(8) //NQueens is a fundamental data type<br />
print(n)</p>
<p>21 characters is all. Haskell is verbose in comparison.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: helge</title>
		<link>http://paulbutler.org/archives/n-queens-in-a-tweet/#comment-216</link>
		<dc:creator>helge</dc:creator>
		<pubDate>Thu, 23 Jul 2009 11:16:38 +0000</pubDate>
		<guid isPermaLink="false">http://paulbutler.org/?p=145#comment-216</guid>
		<description>http://www.pastie.org/556242
268 chars.. perfectly suited for two tweets!

The bonus on this one is that it solves the 8-queens problem in about 0.001s!
I might try to push this under 200 in the weekend.</description>
		<content:encoded><![CDATA[<p><a href="http://www.pastie.org/556242" rel="nofollow">http://www.pastie.org/556242</a><br />
268 chars.. perfectly suited for two tweets!</p>
<p>The bonus on this one is that it solves the 8-queens problem in about 0.001s!<br />
I might try to push this under 200 in the weekend.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Harrop</title>
		<link>http://paulbutler.org/archives/n-queens-in-a-tweet/#comment-215</link>
		<dc:creator>Jon Harrop</dc:creator>
		<pubDate>Thu, 23 Jul 2009 10:16:02 +0000</pubDate>
		<guid isPermaLink="false">http://paulbutler.org/?p=145#comment-215</guid>
		<description>That&#039;s because you&#039;re using a non-mainstream language. If you use something decent like Java then its standard library actually provides an n-queens object factory generator that you can instantiate and just call. The code is still longer but it requires much less thought to write and unit test...

Cheers,
Jon.</description>
		<content:encoded><![CDATA[<p>That&#8217;s because you&#8217;re using a non-mainstream language. If you use something decent like Java then its standard library actually provides an n-queens object factory generator that you can instantiate and just call. The code is still longer but it requires much less thought to write and unit test&#8230;</p>
<p>Cheers,<br />
Jon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan Ingram</title>
		<link>http://paulbutler.org/archives/n-queens-in-a-tweet/#comment-214</link>
		<dc:creator>Ryan Ingram</dc:creator>
		<pubDate>Wed, 22 Jul 2009 22:25:26 +0000</pubDate>
		<guid isPermaLink="false">http://paulbutler.org/?p=145#comment-214</guid>
		<description>You can golf a couple of characters off by replacing

(\x y-&gt;x:show y)
with
((.show).(:))</description>
		<content:encoded><![CDATA[<p>You can golf a couple of characters off by replacing</p>
<p>(\x y-&gt;x:show y)<br />
with<br />
((.show).(:))</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous Rex</title>
		<link>http://paulbutler.org/archives/n-queens-in-a-tweet/#comment-213</link>
		<dc:creator>Anonymous Rex</dc:creator>
		<pubDate>Wed, 22 Jul 2009 18:11:58 +0000</pubDate>
		<guid isPermaLink="false">http://paulbutler.org/?p=145#comment-213</guid>
		<description>Have you seen the Perl Golf solution at http://masak.org/carl/w/index.php/Perl:Golf ?

It&#039;s a very thorough example of golfing.</description>
		<content:encoded><![CDATA[<p>Have you seen the Perl Golf solution at <a href="http://masak.org/carl/w/index.php/Perl:Golf" rel="nofollow">http://masak.org/carl/w/index.php/Perl:Golf</a> ?</p>
<p>It&#8217;s a very thorough example of golfing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Butler</title>
		<link>http://paulbutler.org/archives/n-queens-in-a-tweet/#comment-212</link>
		<dc:creator>Paul Butler</dc:creator>
		<pubDate>Sun, 28 Jun 2009 00:14:03 +0000</pubDate>
		<guid isPermaLink="false">http://paulbutler.org/?p=145#comment-212</guid>
		<description>Thanks for the comparison, Rajesh.

Unfortunately WordPress has a bad habit of dropping characters from PHP code in comments, rather than just displaying them as characters.

Edit: never mind, I hadn&#039;t seen your second comment in the moderation queue. Need to fix my comment settings.</description>
		<content:encoded><![CDATA[<p>Thanks for the comparison, Rajesh.</p>
<p>Unfortunately WordPress has a bad habit of dropping characters from PHP code in comments, rather than just displaying them as characters.</p>
<p>Edit: never mind, I hadn&#8217;t seen your second comment in the moderation queue. Need to fix my comment settings.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajesh Kumar</title>
		<link>http://paulbutler.org/archives/n-queens-in-a-tweet/#comment-211</link>
		<dc:creator>Rajesh Kumar</dc:creator>
		<pubDate>Sat, 27 Jun 2009 23:41:50 +0000</pubDate>
		<guid isPermaLink="false">http://paulbutler.org/?p=145#comment-211</guid>
		<description>Okay, wordpress ate up my solution. Here&#039;s the link:
http://files.getdropbox.com/u/396326/nqueens.txt</description>
		<content:encoded><![CDATA[<p>Okay, wordpress ate up my solution. Here&#8217;s the link:<br />
<a href="http://files.getdropbox.com/u/396326/nqueens.txt" rel="nofollow">http://files.getdropbox.com/u/396326/nqueens.txt</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajesh Kumar</title>
		<link>http://paulbutler.org/archives/n-queens-in-a-tweet/#comment-210</link>
		<dc:creator>Rajesh Kumar</dc:creator>
		<pubDate>Sat, 27 Jun 2009 23:40:12 +0000</pubDate>
		<guid isPermaLink="false">http://paulbutler.org/?p=145#comment-210</guid>
		<description>I got 303 chars in PHP:

$n=$argv[1];$s=range(1,$n);while($i$k)$r[$i]=$k+$b[$i];return $r;}

and it only spits out ONE solution, not all! PHP is VERBOSE!</description>
		<content:encoded><![CDATA[<p>I got 303 chars in PHP:</p>
<p>$n=$argv[1];$s=range(1,$n);while($i$k)$r[$i]=$k+$b[$i];return $r;}</p>
<p>and it only spits out ONE solution, not all! PHP is VERBOSE!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

