<?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: Project Euler Problem 8</title>
	<atom:link href="http://basildoncoder.com/blog/2009/02/09/project-euler-problem-8/feed/" rel="self" type="application/rss+xml" />
	<link>http://basildoncoder.com/blog/2009/02/09/project-euler-problem-8/</link>
	<description>Incoherent and disjointed opinionated drivel from somewhere near London</description>
	<lastBuildDate>Sat, 21 Aug 2010 02:05:06 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Sol</title>
		<link>http://basildoncoder.com/blog/2009/02/09/project-euler-problem-8/comment-page-1/#comment-8407</link>
		<dc:creator>Sol</dc:creator>
		<pubDate>Tue, 10 Feb 2009 19:27:59 +0000</pubDate>
		<guid isPermaLink="false">http://basildoncoder.com/blog/2009/02/09/project-euler-problem-8/#comment-8407</guid>
		<description>&lt;a HREF=&quot;http://use.perl.org/~colomon/journal/38449&quot; rel=&quot;nofollow&quot;&gt;Can I link to a properly formatted version?&lt;/A&gt;</description>
		<content:encoded><![CDATA[<p><a HREF="http://use.perl.org/~colomon/journal/38449" rel="nofollow">Can I link to a properly formatted version?</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sol</title>
		<link>http://basildoncoder.com/blog/2009/02/09/project-euler-problem-8/comment-page-1/#comment-8372</link>
		<dc:creator>Sol</dc:creator>
		<pubDate>Tue, 10 Feb 2009 04:04:38 +0000</pubDate>
		<guid isPermaLink="false">http://basildoncoder.com/blog/2009/02/09/project-euler-problem-8/#comment-8372</guid>
		<description>Blast, that didn&#039;t go well, posting-wise....</description>
		<content:encoded><![CDATA[<p>Blast, that didn&#8217;t go well, posting-wise&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sol</title>
		<link>http://basildoncoder.com/blog/2009/02/09/project-euler-problem-8/comment-page-1/#comment-8371</link>
		<dc:creator>Sol</dc:creator>
		<pubDate>Tue, 10 Feb 2009 04:03:50 +0000</pubDate>
		<guid isPermaLink="false">http://basildoncoder.com/blog/2009/02/09/project-euler-problem-8/#comment-8371</guid>
		<description>Straightforward Perl 6 implementation:
&lt;code&gt;
my $num = &quot;73167176531330624919225119674426574742355349194934&quot;
        ~ &quot;96983520312774506326239578318016984801869478851843&quot;
        ~ &quot;85861560789112949495459501737958331952853208805511&quot;
        ~ &quot;12540698747158523863050715693290963295227443043557&quot;
        ~ &quot;66896648950445244523161731856403098711121722383113&quot;
        ~ &quot;62229893423380308135336276614282806444486645238749&quot;
        ~ &quot;30358907296290491560440772390713810515859307960866&quot;
        ~ &quot;70172427121883998797908792274921901699720888093776&quot;
        ~ &quot;65727333001053367881220235421809751254540594752243&quot;
        ~ &quot;52584907711670556013604839586446706324415722155397&quot;
        ~ &quot;53697817977846174064955149290862569321978468622482&quot;
        ~ &quot;83972241375657056057490261407972968652414535100474&quot;
        ~ &quot;82166370484403199890008895243450658541227588666881&quot;
        ~ &quot;16427171479924442928230863465674813919123162824586&quot;
        ~ &quot;17866458359124566529476545682848912883142607690042&quot;
        ~ &quot;24219022671055626321111109370544217506941658960408&quot;
        ~ &quot;07198403850962455444362981230987879927244284909188&quot;
        ~ &quot;84580156166097919133875499200524063689912560717606&quot;
        ~ &quot;05886116467109405077541002256983155200055935729725&quot;
        ~ &quot;71636269561882670428252483600823257530420752963450&quot;;
     
my $max_value = 0;
my $i;   
loop($i = 0; $i  $max_value);
}
say &quot;$max_value&quot;;
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Straightforward Perl 6 implementation:<br />
<code><br />
my $num = "73167176531330624919225119674426574742355349194934"<br />
        ~ "96983520312774506326239578318016984801869478851843"<br />
        ~ "85861560789112949495459501737958331952853208805511"<br />
        ~ "12540698747158523863050715693290963295227443043557"<br />
        ~ "66896648950445244523161731856403098711121722383113"<br />
        ~ "62229893423380308135336276614282806444486645238749"<br />
        ~ "30358907296290491560440772390713810515859307960866"<br />
        ~ "70172427121883998797908792274921901699720888093776"<br />
        ~ "65727333001053367881220235421809751254540594752243"<br />
        ~ "52584907711670556013604839586446706324415722155397"<br />
        ~ "53697817977846174064955149290862569321978468622482"<br />
        ~ "83972241375657056057490261407972968652414535100474"<br />
        ~ "82166370484403199890008895243450658541227588666881"<br />
        ~ "16427171479924442928230863465674813919123162824586"<br />
        ~ "17866458359124566529476545682848912883142607690042"<br />
        ~ "24219022671055626321111109370544217506941658960408"<br />
        ~ "07198403850962455444362981230987879927244284909188"<br />
        ~ "84580156166097919133875499200524063689912560717606"<br />
        ~ "05886116467109405077541002256983155200055935729725"<br />
        ~ "71636269561882670428252483600823257530420752963450";</p>
<p>my $max_value = 0;<br />
my $i;<br />
loop($i = 0; $i  $max_value);<br />
}<br />
say "$max_value";<br />
</code></p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.525 seconds -->
