<?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 for My Thought Exactly</title>
	<atom:link href="http://www.mythoughtexactly.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mythoughtexactly.com</link>
	<description>It is my world, and this is my voice</description>
	<lastBuildDate>Thu, 15 Dec 2011 16:51:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Project Euler Problem 4 (PHP) by Joseph</title>
		<link>http://www.mythoughtexactly.com/2011/08/project-euler-problem-4-php/#comment-158</link>
		<dc:creator>Joseph</dc:creator>
		<pubDate>Thu, 15 Dec 2011 16:51:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.mythoughtexactly.com/?p=199#comment-158</guid>
		<description>I haven&#039;t had a chance to run through the code just yet, but it runs beautifully as well as much more efficiently than mine.  Thank you!</description>
		<content:encoded><![CDATA[<p>I haven&#8217;t had a chance to run through the code just yet, but it runs beautifully as well as much more efficiently than mine.  Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Project Euler Problem 4 (PHP) by Kah Thong</title>
		<link>http://www.mythoughtexactly.com/2011/08/project-euler-problem-4-php/#comment-155</link>
		<dc:creator>Kah Thong</dc:creator>
		<pubDate>Tue, 13 Dec 2011 16:15:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.mythoughtexactly.com/?p=199#comment-155</guid>
		<description>Hi thanks for your solution, however it tends to slow down on very large numbers (4 digits above)

Here&#039;s my not-so-clean solution, but I THINK it works.

&lt;code&gt;
$start = microtime(TRUE);

$palindrome = $palindrome_i = $palindome_j = 0;
for ($i = 999; $i &gt; 99; $i--) {
  for ($j = 999; $j &gt; 99; $j--) {
    $product = $i * $j;
    if ($product == strrev($product)) {
      $palindrome_j = $j;
      $palindrome = $product;
      break;
    }
  }
  if ($palindrome) {
    $palindrome_i = $i;
    break;
  }
}
$palindrome2 = 0;
for ($i = $palindrome_i; $i &gt; $palindrome_j; $i--) {
  for ($j = $palindrome_i; $j &gt; $palindrome_j; $j--) {
    $product = $i * $j;
    if ($product == strrev($product)) {
      $palindrome2 = $product;
      break;
    }
  }
  if ($palindrome2) {
    break;
  }
}
echo ($palindrome2) ? $palindrome2 : $palindrome;

$end = microtime(TRUE);
echo &#039;&#039; . number_format($end - $start, 4) . &#039; seconds&#039;;
&lt;/code&gt;

Just sharing here, I could be wrong.</description>
		<content:encoded><![CDATA[<p>Hi thanks for your solution, however it tends to slow down on very large numbers (4 digits above)</p>
<p>Here&#8217;s my not-so-clean solution, but I THINK it works.</p>
<p><code><br />
$start = microtime(TRUE);</p>
<p>$palindrome = $palindrome_i = $palindome_j = 0;<br />
for ($i = 999; $i &gt; 99; $i--) {<br />
  for ($j = 999; $j &gt; 99; $j--) {<br />
    $product = $i * $j;<br />
    if ($product == strrev($product)) {<br />
      $palindrome_j = $j;<br />
      $palindrome = $product;<br />
      break;<br />
    }<br />
  }<br />
  if ($palindrome) {<br />
    $palindrome_i = $i;<br />
    break;<br />
  }<br />
}<br />
$palindrome2 = 0;<br />
for ($i = $palindrome_i; $i &gt; $palindrome_j; $i--) {<br />
  for ($j = $palindrome_i; $j &gt; $palindrome_j; $j--) {<br />
    $product = $i * $j;<br />
    if ($product == strrev($product)) {<br />
      $palindrome2 = $product;<br />
      break;<br />
    }<br />
  }<br />
  if ($palindrome2) {<br />
    break;<br />
  }<br />
}<br />
echo ($palindrome2) ? $palindrome2 : $palindrome;</p>
<p>$end = microtime(TRUE);<br />
echo '' . number_format($end - $start, 4) . ' seconds';<br />
</code></p>
<p>Just sharing here, I could be wrong.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Project Euler Problem 3 (PHP) by Joseph</title>
		<link>http://www.mythoughtexactly.com/2011/07/project-euler-problem-3-php/#comment-154</link>
		<dc:creator>Joseph</dc:creator>
		<pubDate>Tue, 13 Dec 2011 14:31:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.mythoughtexactly.com/?p=192#comment-154</guid>
		<description>You are correct.  Somehow I copied the wrong one in.  It has been fixed now and shows the correct solution.  Thanks for pointing it out.</description>
		<content:encoded><![CDATA[<p>You are correct.  Somehow I copied the wrong one in.  It has been fixed now and shows the correct solution.  Thanks for pointing it out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Project Euler Problem 3 (PHP) by Kah Thong</title>
		<link>http://www.mythoughtexactly.com/2011/07/project-euler-problem-3-php/#comment-153</link>
		<dc:creator>Kah Thong</dc:creator>
		<pubDate>Tue, 13 Dec 2011 13:39:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.mythoughtexactly.com/?p=192#comment-153</guid>
		<description>I believe you have the wrong solution here?
This solution is for problem #2.</description>
		<content:encoded><![CDATA[<p>I believe you have the wrong solution here?<br />
This solution is for problem #2.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Legal and Moral Ramifications of Marriage Laws by Joseph</title>
		<link>http://www.mythoughtexactly.com/2011/07/legal-moral-ramifications-marriage-laws/#comment-6</link>
		<dc:creator>Joseph</dc:creator>
		<pubDate>Fri, 08 Jul 2011 14:09:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.mythoughtexactly.com/?p=151#comment-6</guid>
		<description>As a point of note, propositions in Texas are very different from those in California.  In Texas, propositions are things that the legislature is considering bringing to the floor, but they want a gauge of pulic support first.  In California, they are put into law immediately.</description>
		<content:encoded><![CDATA[<p>As a point of note, propositions in Texas are very different from those in California.  In Texas, propositions are things that the legislature is considering bringing to the floor, but they want a gauge of pulic support first.  In California, they are put into law immediately.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

