<?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>Tue, 16 Mar 2010 23:27:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: tweetadder promotion code</title>
		<link>http://paulbutler.org/archives/n-queens-in-a-tweet/comment-page-1/#comment-29880</link>
		<dc:creator>tweetadder promotion code</dc:creator>
		<pubDate>Mon, 08 Mar 2010 11:57:56 +0000</pubDate>
		<guid isPermaLink="false">http://paulbutler.org/?p=145#comment-29880</guid>
		<description>Getting Followers on Twitter is the essential part of marketing your product or brand to all over the world utilizing twitter but automation is the key way to get you there, you definitely need tools to automate the work.</description>
		<content:encoded><![CDATA[<p>Getting Followers on Twitter is the essential part of marketing your product or brand to all over the world utilizing twitter but automation is the key way to get you there, you definitely need tools to automate the work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mkeblx</title>
		<link>http://paulbutler.org/archives/n-queens-in-a-tweet/comment-page-1/#comment-14820</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-14820</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-page-1/#comment-5709</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-5709</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-page-1/#comment-5707</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-5707</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-page-1/#comment-5691</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-5691</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-page-1/#comment-5680</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-5680</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-page-1/#comment-3978</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-3978</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-page-1/#comment-3975</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-3975</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-page-1/#comment-3974</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-3974</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>
