<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Chris Pitzer &#187; games</title>
	<atom:link href="http://blog.christopherpitzer.com/category/games/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.christopherpitzer.com</link>
	<description>web development, games, business, optimism</description>
	<lastBuildDate>Tue, 09 Feb 2010 22:50:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Project Euler</title>
		<link>http://blog.christopherpitzer.com/2008/project-euler/</link>
		<comments>http://blog.christopherpitzer.com/2008/project-euler/#comments</comments>
		<pubDate>Thu, 07 Feb 2008 03:17:16 +0000</pubDate>
		<dc:creator>Christopher Pitzer</dc:creator>
				<category><![CDATA[education]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://blog.christopherpitzer.com/?p=17</guid>
		<description><![CDATA[If you&#8217;re into puzzles and enjoy some light coding, you should check out Project Euler.  It&#8217;s a site devoted to problems (mostly mathematical) which require a computer to be solved.

Problem 35
The number, 197, is called a circular prime because all rotations of the digits: 197, 971, and 719, are themselves prime.
There are thirteen such [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re into puzzles and enjoy some light coding, you should check out <a href="http://www.projecteuler.net">Project Euler</a>.  It&#8217;s a site devoted to problems (mostly mathematical) which require a computer to be solved.</p>
<blockquote>
<h2><a href="http://projecteuler.net/index.php?section=problems&amp;id=35">Problem 35</a></h2>
<p>The number, 197, is called a circular prime because all rotations of the digits: 197, 971, and 719, are themselves prime.</p>
<p>There are thirteen such primes below 100: 2, 3, 5, 7, 11, 13, 17, 31, 37, 71, 73, 79, and 97.</p>
<p>How many circular primes are there below one million?</p></blockquote>
<p>Sure, you <em>could</em> solve that kind of problem on paper, but it would take you a lifetime.  On the other hand, it is pretty simple if you attack it with a computer.</p>
<ol>
<li>Find all the prime numbers under a million.</li>
<li>Split each number into a string and recombine it using all possible rotations.</li>
<li>Test each rotation, if all are prime, add 1 to the tally.</li>
</ol>
<p>When you have the answer, you can go back to ProjectEuler.net and punch it in.  The site will keep track of which problems you&#8217;ve solved, and if you have lots of time on your hands, you might even make it on to a list of the top 1000 problem solvers.</p>
<p>If you like mulling over a problem in the back of your mind all day, Project Euler is worth a look.</p>
<p>Have fun, and let me know what you think!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.christopherpitzer.com/2008/project-euler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
