<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Tech Talk</title>
	<atom:link href="http://ingeneur.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ingeneur.wordpress.com</link>
	<description>Linux, Python, E51, Scripting...</description>
	<lastBuildDate>Mon, 13 Jun 2011 22:28:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ingeneur.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Tech Talk</title>
		<link>http://ingeneur.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ingeneur.wordpress.com/osd.xml" title="Tech Talk" />
	<atom:link rel='hub' href='http://ingeneur.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Solution to Prob #38</title>
		<link>http://ingeneur.wordpress.com/2011/04/26/solution-to-prob-38/</link>
		<comments>http://ingeneur.wordpress.com/2011/04/26/solution-to-prob-38/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 12:03:45 +0000</pubDate>
		<dc:creator>abiya</dc:creator>
				<category><![CDATA[projecteuler]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[technical]]></category>

		<guid isPermaLink="false">http://ingeneur.wordpress.com/?p=256</guid>
		<description><![CDATA[The problem statement is here. I spent some time thinking the best way to exit the brute force loop. I still don&#8217;t claim to have gotten it right, but this one is atleast not too slow and gets the right answer. def list_to_number(l) : r = 0 for i in l : r *= 10 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ingeneur.wordpress.com&amp;blog=481952&amp;post=256&amp;subd=ingeneur&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The problem statement is <a href="http://projecteuler.net/index.php?section=problems&amp;id=38">here</a>. I spent some time thinking the best way to exit the brute force loop. I still don&#8217;t claim to have gotten it right, but this one is atleast not too slow and gets the right answer.</p>
<pre>

def list_to_number(l) :
    r = 0
    for i in l :
        r *= 10
        r += i
    return r

def number_to_list(n) :
    r = []
    while n :
        r.insert(0, n%10)
        n /= 10
    return r

def is_1to9_pandigital(l) :
    if len(l)  9 :
        return False
    for i in range(1, 10) :
        if i not in l :
            return False
    return True

def get_next_seed(s) :

    seed = s + 1
    while seed  9999 :
        return -1

    return seed

if __name__ == '__main__' :

    seed = 1
    pans = 0
    while True :
        pandigital = []
        n = 1
        while True :
            p = seed * n
            pl = number_to_list(p)
            fail = False
            for l in pl :
                if l in pandigital :
                    fail = True
                    break
            if fail :
                break
            pandigital.extend(pl)
            if is_1to9_pandigital(pandigital) :
                pd = list_to_number(pandigital)
                if pd &gt;= pans :
                    pans = pd
                    print "Current Pandigital is ", pd
                    print seed, n

                fail = True
                break
            n += 1
            digits_left = []
            for i in range(1, 10) :
                if i not in pandigital :
                    digits_left.append(i)
            digits_left.sort(reverse=True)
            if n*seed &gt; list_to_number(digits_left) :
                break
        seed = get_next_seed(seed)
        if seed == -1 :
            break
    print "Exhausted!"
</pre>
<p>I will upload this into the bitbucket repo real soon <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ingeneur.wordpress.com/256/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ingeneur.wordpress.com/256/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ingeneur.wordpress.com/256/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ingeneur.wordpress.com/256/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ingeneur.wordpress.com/256/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ingeneur.wordpress.com/256/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ingeneur.wordpress.com/256/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ingeneur.wordpress.com/256/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ingeneur.wordpress.com/256/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ingeneur.wordpress.com/256/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ingeneur.wordpress.com/256/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ingeneur.wordpress.com/256/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ingeneur.wordpress.com/256/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ingeneur.wordpress.com/256/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ingeneur.wordpress.com&amp;blog=481952&amp;post=256&amp;subd=ingeneur&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ingeneur.wordpress.com/2011/04/26/solution-to-prob-38/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>13.044630 80.267740</georss:point>
		<geo:lat>13.044630</geo:lat>
		<geo:long>80.267740</geo:long>
		<media:content url="http://0.gravatar.com/avatar/0379485d11ec5bcd00f41005fe558e4b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">abiya</media:title>
		</media:content>
	</item>
		<item>
		<title>Project Euler Solutions on Bitbucket</title>
		<link>http://ingeneur.wordpress.com/2010/10/03/project-euler-solutions-on-bitbucket/</link>
		<comments>http://ingeneur.wordpress.com/2010/10/03/project-euler-solutions-on-bitbucket/#comments</comments>
		<pubDate>Sun, 03 Oct 2010 02:07:36 +0000</pubDate>
		<dc:creator>abiya</dc:creator>
				<category><![CDATA[projecteuler]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[technical]]></category>

		<guid isPermaLink="false">http://ingeneur.wordpress.com/?p=254</guid>
		<description><![CDATA[I am finally adding my solutions to a repository for better access and managing changes and/or incorporating suggestions. I have a dormant bitbucket account and since it is recently in news, I decided to make something out of the account My bitbucket url.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ingeneur.wordpress.com&amp;blog=481952&amp;post=254&amp;subd=ingeneur&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am finally adding my solutions to a repository for better access and managing changes and/or incorporating suggestions. I have a dormant bitbucket account and since it is recently in news, I decided to make something out of the account <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>My <a href="http://bitbucket.org/abishek/projecteuler/overview">bitbucket url</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ingeneur.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ingeneur.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ingeneur.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ingeneur.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ingeneur.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ingeneur.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ingeneur.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ingeneur.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ingeneur.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ingeneur.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ingeneur.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ingeneur.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ingeneur.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ingeneur.wordpress.com/254/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ingeneur.wordpress.com&amp;blog=481952&amp;post=254&amp;subd=ingeneur&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ingeneur.wordpress.com/2010/10/03/project-euler-solutions-on-bitbucket/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>13.044630 80.267740</georss:point>
		<geo:lat>13.044630</geo:lat>
		<geo:long>80.267740</geo:long>
		<media:content url="http://0.gravatar.com/avatar/0379485d11ec5bcd00f41005fe558e4b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">abiya</media:title>
		</media:content>
	</item>
		<item>
		<title>Solution to Prob #44</title>
		<link>http://ingeneur.wordpress.com/2010/10/03/solution-to-prob-44/</link>
		<comments>http://ingeneur.wordpress.com/2010/10/03/solution-to-prob-44/#comments</comments>
		<pubDate>Sun, 03 Oct 2010 01:36:42 +0000</pubDate>
		<dc:creator>abiya</dc:creator>
				<category><![CDATA[projecteuler]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[technical]]></category>

		<guid isPermaLink="false">http://ingeneur.wordpress.com/?p=250</guid>
		<description><![CDATA[The problem statement is here. I solved this problem a couple of days back trying to use lists and minimize the number of computations. Eventually, i found that the list could be a tad more expensive than the computation . Here is my final version of the solution, faster than I expected! from math import [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ingeneur.wordpress.com&amp;blog=481952&amp;post=250&amp;subd=ingeneur&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The problem statement is <a href="http://projecteuler.net/index.php?section=problems&amp;id=44">here</a>. I solved this problem a couple of days back trying to use lists and minimize the number of computations. Eventually, i found that the list could be a tad more expensive than the computation <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> . Here is my final version of the solution, faster than I expected!</p>
<pre>
from math import sqrt

pentagonal = lambda n: n*((3*n)-1)/2

def is_pentagonal(num) :
    if num == 0 :
        return False
    n = int((1 + sqrt((1 + (24*num))))/6)
    return pentagonal(n) == num

# 1560090 7042750
#
if __name__ == '__main__' :

    max = 10
    done = False
    while not done:
        for i in xrange(2, max) :
            pi = pentagonal(i)
            for j in xrange(2, max) :
                pj = pentagonal(j)
                if not is_pentagonal(pi+pj) :
                    continue
                if is_pentagonal(abs(pi-pj)) :
                    print pi, pj
                    done = True
                    break
            if done :
                break
            max += 10
</pre>
<p>Some of this has no explanation:<br />
Why am I moving in steps of 10?<br />
No logic there, just happen to like ten.</p>
<p>How does this guarantee that the difference is minimal?<br />
Well, I dunno. I did not even see if there are other numbers <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ingeneur.wordpress.com/250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ingeneur.wordpress.com/250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ingeneur.wordpress.com/250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ingeneur.wordpress.com/250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ingeneur.wordpress.com/250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ingeneur.wordpress.com/250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ingeneur.wordpress.com/250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ingeneur.wordpress.com/250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ingeneur.wordpress.com/250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ingeneur.wordpress.com/250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ingeneur.wordpress.com/250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ingeneur.wordpress.com/250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ingeneur.wordpress.com/250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ingeneur.wordpress.com/250/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ingeneur.wordpress.com&amp;blog=481952&amp;post=250&amp;subd=ingeneur&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ingeneur.wordpress.com/2010/10/03/solution-to-prob-44/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>13.044630 80.267740</georss:point>
		<geo:lat>13.044630</geo:lat>
		<geo:long>80.267740</geo:long>
		<media:content url="http://0.gravatar.com/avatar/0379485d11ec5bcd00f41005fe558e4b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">abiya</media:title>
		</media:content>
	</item>
		<item>
		<title>Solution to Prob #125</title>
		<link>http://ingeneur.wordpress.com/2010/09/29/solution-to-prob-125/</link>
		<comments>http://ingeneur.wordpress.com/2010/09/29/solution-to-prob-125/#comments</comments>
		<pubDate>Wed, 29 Sep 2010 08:40:43 +0000</pubDate>
		<dc:creator>abiya</dc:creator>
				<category><![CDATA[projecteuler]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[technical]]></category>

		<guid isPermaLink="false">http://ingeneur.wordpress.com/?p=247</guid>
		<description><![CDATA[The problem is stated here. My solution in python is here: from math import sqrt sqr = lambda n: n*n def reverse(num) : rev = 0 while num : rev = (rev*10) + num%10 num /= 10 return rev def is_sum_of_squares(num) : for seed in xrange(int(sqrt(num))) : sum = 0 agg = seed while sum&#60;num [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ingeneur.wordpress.com&amp;blog=481952&amp;post=247&amp;subd=ingeneur&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The problem is stated <a href="http://projecteuler.net/index.php?section=problems&amp;id=125">here</a>. My solution in python is here:</p>
<pre>
from math import sqrt

sqr = lambda n: n*n

def reverse(num) :
    rev = 0
    while num :
        rev = (rev*10) + num%10
        num /= 10
    return rev

def is_sum_of_squares(num) :
    for seed in xrange(int(sqrt(num))) :
        sum = 0
        agg = seed
        while sum&lt;num :
            sum += sqr(agg)
            if sum == num  and agg  seed :
                return True
            agg += 1
    return False

if __name__ == '__main__' :
    sum = 0
    for i in xrange(2,100000000) :
        if i == reverse(i) :
            if is_sum_of_squares(i) :
                sum += i
    print sum
</pre>
<p>Takes way too long to complete. Quite literally had lunch by the time this completed <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ingeneur.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ingeneur.wordpress.com/247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ingeneur.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ingeneur.wordpress.com/247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ingeneur.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ingeneur.wordpress.com/247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ingeneur.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ingeneur.wordpress.com/247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ingeneur.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ingeneur.wordpress.com/247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ingeneur.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ingeneur.wordpress.com/247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ingeneur.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ingeneur.wordpress.com/247/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ingeneur.wordpress.com&amp;blog=481952&amp;post=247&amp;subd=ingeneur&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ingeneur.wordpress.com/2010/09/29/solution-to-prob-125/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>13.044630 80.267740</georss:point>
		<geo:lat>13.044630</geo:lat>
		<geo:long>80.267740</geo:long>
		<media:content url="http://0.gravatar.com/avatar/0379485d11ec5bcd00f41005fe558e4b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">abiya</media:title>
		</media:content>
	</item>
		<item>
		<title>Solution to Prob #92</title>
		<link>http://ingeneur.wordpress.com/2010/09/28/solution-to-prob-92/</link>
		<comments>http://ingeneur.wordpress.com/2010/09/28/solution-to-prob-92/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 12:26:05 +0000</pubDate>
		<dc:creator>abiya</dc:creator>
				<category><![CDATA[projecteuler]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[technical]]></category>

		<guid isPermaLink="false">http://ingeneur.wordpress.com/?p=243</guid>
		<description><![CDATA[The problem is stated here. My solution in python is here. Takes a while to complete, though. I really need to start practicing threaded programming and/or parallel stuff in python. This one may also be a good case for parallel programming. My solution: if __name__ == '__main__' : eighty9s = 0 for i in xrange(2,10000000) [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ingeneur.wordpress.com&amp;blog=481952&amp;post=243&amp;subd=ingeneur&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The problem is stated <a href="http://projecteuler.net/index.php?section=problems&amp;id=92">here</a>. My solution in python is here. Takes a while to complete, though. I really need to start practicing threaded programming and/or parallel stuff in python. This one may also be a good case for parallel programming. My solution:</p>
<pre>

if __name__ == '__main__' :
    eighty9s = 0
    for i in xrange(2,10000000) :
        seed = i
        while 1 :
            if seed in (1,89) :
                break
            s_i = seed
            n_seed = 0
            while s_i :
                n = s_i % 10
                s_i /= 10
                n_seed += n*n
            seed = n_seed
        if seed == 89 :
            eighty9s += 1
    print eighty9s
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ingeneur.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ingeneur.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ingeneur.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ingeneur.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ingeneur.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ingeneur.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ingeneur.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ingeneur.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ingeneur.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ingeneur.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ingeneur.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ingeneur.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ingeneur.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ingeneur.wordpress.com/243/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ingeneur.wordpress.com&amp;blog=481952&amp;post=243&amp;subd=ingeneur&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ingeneur.wordpress.com/2010/09/28/solution-to-prob-92/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>13.044630 80.267740</georss:point>
		<geo:lat>13.044630</geo:lat>
		<geo:long>80.267740</geo:long>
		<media:content url="http://0.gravatar.com/avatar/0379485d11ec5bcd00f41005fe558e4b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">abiya</media:title>
		</media:content>
	</item>
		<item>
		<title>Solution to Prob #46</title>
		<link>http://ingeneur.wordpress.com/2010/09/28/solution-to-prob-46/</link>
		<comments>http://ingeneur.wordpress.com/2010/09/28/solution-to-prob-46/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 09:14:48 +0000</pubDate>
		<dc:creator>abiya</dc:creator>
				<category><![CDATA[projecteuler]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[technical]]></category>

		<guid isPermaLink="false">http://ingeneur.wordpress.com/?p=240</guid>
		<description><![CDATA[The problem is defined here. Quite a simple one and the solution in python is : from math import sqrt def is_prime(num) : if num == 1 : return False for i in range(2, int(sqrt(num))+1) : if not num%i: return False return True if __name__ == '__main__' : seed = 3 primes = [2] while [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ingeneur.wordpress.com&amp;blog=481952&amp;post=240&amp;subd=ingeneur&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The problem is defined <a href="http://projecteuler.net/index.php?section=problems&amp;id=46">here</a>. Quite a simple one and the solution in python is :</p>
<pre>

from math import sqrt

def is_prime(num) :
    if num == 1 :
        return False
    for i in range(2, int(sqrt(num))+1) :
        if not num%i:
            return False
    return True
if __name__ == '__main__' :

    seed = 3
    primes = [2]
    while 1:
        if is_prime(seed) :
            primes.append(seed)
            seed += 2
            continue
        # composite. good.
        fail = False
        for prime in primes :
            seed_1 = seed - prime
            seed_2 = seed_1 / 2
            seed_3 = sqrt(seed_2)
            seed_4 = int(seed_3)
            if seed_4*seed_4 == seed_2 :
                fail = True
                break
        if fail :
            seed += 2
        else :
            print seed
            break
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ingeneur.wordpress.com/240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ingeneur.wordpress.com/240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ingeneur.wordpress.com/240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ingeneur.wordpress.com/240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ingeneur.wordpress.com/240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ingeneur.wordpress.com/240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ingeneur.wordpress.com/240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ingeneur.wordpress.com/240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ingeneur.wordpress.com/240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ingeneur.wordpress.com/240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ingeneur.wordpress.com/240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ingeneur.wordpress.com/240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ingeneur.wordpress.com/240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ingeneur.wordpress.com/240/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ingeneur.wordpress.com&amp;blog=481952&amp;post=240&amp;subd=ingeneur&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ingeneur.wordpress.com/2010/09/28/solution-to-prob-46/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>13.044630 80.267740</georss:point>
		<geo:lat>13.044630</geo:lat>
		<geo:long>80.267740</geo:long>
		<media:content url="http://0.gravatar.com/avatar/0379485d11ec5bcd00f41005fe558e4b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">abiya</media:title>
		</media:content>
	</item>
		<item>
		<title>Solution to Prob #33</title>
		<link>http://ingeneur.wordpress.com/2010/09/25/solution-to-prob-33/</link>
		<comments>http://ingeneur.wordpress.com/2010/09/25/solution-to-prob-33/#comments</comments>
		<pubDate>Sat, 25 Sep 2010 08:44:06 +0000</pubDate>
		<dc:creator>abiya</dc:creator>
				<category><![CDATA[projecteuler]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[technical]]></category>

		<guid isPermaLink="false">http://ingeneur.wordpress.com/?p=238</guid>
		<description><![CDATA[The problem is defined here. Another quite a tricky problem. Works, but the solution looks very ugly Anyway, my solution in python is : if __name__ == '__main__' : pair = [1,1] for nr in range(10, 100) : nr_t = nr/10 nr_o = nr%10 if not nr_o : continue for dr in range(nr, 100) : [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ingeneur.wordpress.com&amp;blog=481952&amp;post=238&amp;subd=ingeneur&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The problem is defined <a href="http://projecteuler.net/index.php?section=problems&amp;id=33">here</a>. Another quite a tricky problem. Works, but the solution looks very ugly <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  Anyway, my solution in python is :</p>
<pre>
if __name__ == '__main__' :
    pair = [1,1]
    for nr in range(10, 100) :
        nr_t = nr/10
        nr_o = nr%10
        if not nr_o :
            continue
        for dr in range(nr, 100) :
            dr_t = dr/10
            dr_o = dr%10
            ndr = 100
            nnr = 100
            common = None
            if dr_t not in (nr_t, nr_o) and dr_o in (nr_t, nr_o) :
                ndr = dr_t
                common = dr_o
            elif dr_t in (nr_t, nr_o) and dr_o not in (nr_t, nr_o) :
                ndr = dr_o
                common = dr_t
            else :
                continue
            if nr_t == common:
                nnr = nr_o
            else :
                nnr = nr_t
            if ndr and (nr*1.0)/dr == (nnr*1.0)/ndr :
                pair[0] *= nr
                pair[1] *= dr
    print pair, pair[1]/pair[0]
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ingeneur.wordpress.com/238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ingeneur.wordpress.com/238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ingeneur.wordpress.com/238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ingeneur.wordpress.com/238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ingeneur.wordpress.com/238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ingeneur.wordpress.com/238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ingeneur.wordpress.com/238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ingeneur.wordpress.com/238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ingeneur.wordpress.com/238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ingeneur.wordpress.com/238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ingeneur.wordpress.com/238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ingeneur.wordpress.com/238/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ingeneur.wordpress.com/238/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ingeneur.wordpress.com/238/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ingeneur.wordpress.com&amp;blog=481952&amp;post=238&amp;subd=ingeneur&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ingeneur.wordpress.com/2010/09/25/solution-to-prob-33/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>13.044630 80.267740</georss:point>
		<geo:lat>13.044630</geo:lat>
		<geo:long>80.267740</geo:long>
		<media:content url="http://0.gravatar.com/avatar/0379485d11ec5bcd00f41005fe558e4b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">abiya</media:title>
		</media:content>
	</item>
		<item>
		<title>Solution to Prob #37</title>
		<link>http://ingeneur.wordpress.com/2010/09/25/solution-to-prob-37/</link>
		<comments>http://ingeneur.wordpress.com/2010/09/25/solution-to-prob-37/#comments</comments>
		<pubDate>Sat, 25 Sep 2010 07:58:13 +0000</pubDate>
		<dc:creator>abiya</dc:creator>
				<category><![CDATA[projecteuler]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[technical]]></category>

		<guid isPermaLink="false">http://ingeneur.wordpress.com/?p=236</guid>
		<description><![CDATA[The problem is defined here. Tricky one there and it took this link to realize that 1 is not considered prime . Anyway, my solution in python is: from math import sqrt, log def is_prime(num) : if num == 1 : return False for i in range(2, int(sqrt(num))+1) : if not num%i: return False return [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ingeneur.wordpress.com&amp;blog=481952&amp;post=236&amp;subd=ingeneur&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The problem is defined <a href="http://projecteuler.net/index.php?section=problems&amp;id=37">here</a>. Tricky one there and it took this <a href="http://www.python-forum.org/pythonforum/viewtopic.php?f=25&amp;t=9920">link</a> to realize that 1 is not considered prime <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  . Anyway, my solution in python is:</p>
<pre>

from math import sqrt, log

def is_prime(num) :
    if num == 1 :
        return False
    for i in range(2, int(sqrt(num))+1) :
        if not num%i:
            return False
    return True

def l2r_list(num) :
    retlist = []
    n = num
    while n &gt; 9 :
        n %= pow(10, int(log(n,10)))
        retlist.append(n)
    return retlist

def r2l_list(num) :
    retlist = []
    n = num
    while n:
        n /= 10
        retlist.append(n)
    return retlist

def truncatable(num, r2l=False, l2r=False) :
    if r2l :
        l_r2l = r2l_list(num)
        for n in l_r2l :
            if not is_prime(n) :
                return False
        return True
    elif l2r :
        l_l2r = l2r_list(num)
        for n in l_l2r :
            if not is_prime(n) :
                return False
        return True
    return False

if __name__ == '__main__' :

    print is_prime(1)
    t_primes = []
    for i in range(10, 999999) :
        if is_prime(i) :
            if truncatable(i, l2r=True) and truncatable(i, r2l=True) :
            	t_primes.append(i)

    print len(t_primes), sum(t_primes)
</pre>
<p>I know what you are thinking! Many of those functions are redundant and useless. I wrote them trying to do half a dozen other things without realizing 1 is not prime. Works, nevertheless <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ingeneur.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ingeneur.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ingeneur.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ingeneur.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ingeneur.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ingeneur.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ingeneur.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ingeneur.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ingeneur.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ingeneur.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ingeneur.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ingeneur.wordpress.com/236/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ingeneur.wordpress.com/236/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ingeneur.wordpress.com/236/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ingeneur.wordpress.com&amp;blog=481952&amp;post=236&amp;subd=ingeneur&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ingeneur.wordpress.com/2010/09/25/solution-to-prob-37/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>13.044630 80.267740</georss:point>
		<geo:lat>13.044630</geo:lat>
		<geo:long>80.267740</geo:long>
		<media:content url="http://0.gravatar.com/avatar/0379485d11ec5bcd00f41005fe558e4b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">abiya</media:title>
		</media:content>
	</item>
		<item>
		<title>Solution to Prob #56</title>
		<link>http://ingeneur.wordpress.com/2010/09/25/solution-to-prob-56/</link>
		<comments>http://ingeneur.wordpress.com/2010/09/25/solution-to-prob-56/#comments</comments>
		<pubDate>Sat, 25 Sep 2010 06:02:04 +0000</pubDate>
		<dc:creator>abiya</dc:creator>
				<category><![CDATA[projecteuler]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[technical]]></category>

		<guid isPermaLink="false">http://ingeneur.wordpress.com/?p=234</guid>
		<description><![CDATA[Another easy problem, at least to solve using python. The statement of the problem is given here. My solution in python is here. from string import atoi def digital_sum(num) : return sum(map(atoi, list(str(num)))) if __name__ == '__main__' : max_sum = 0 for a in range(1,100) : for b in range(1, 100) : dsum = digital_sum(pow(a, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ingeneur.wordpress.com&amp;blog=481952&amp;post=234&amp;subd=ingeneur&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Another easy problem, at least to solve using python. The statement of the problem is given <a href="http://projecteuler.net/index.php?section=problems&amp;id=56">here</a>. My solution in python is here.</p>
<pre>
from string import atoi

def digital_sum(num) :
    return sum(map(atoi, list(str(num))))

if __name__ == '__main__' :
    max_sum = 0
    for a in range(1,100) :
        for b in range(1, 100) :
            dsum = digital_sum(pow(a, b))
            if dsum &gt; max_sum :
                max_sum = dsum
    print max_sum
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ingeneur.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ingeneur.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ingeneur.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ingeneur.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ingeneur.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ingeneur.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ingeneur.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ingeneur.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ingeneur.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ingeneur.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ingeneur.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ingeneur.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ingeneur.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ingeneur.wordpress.com/234/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ingeneur.wordpress.com&amp;blog=481952&amp;post=234&amp;subd=ingeneur&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ingeneur.wordpress.com/2010/09/25/solution-to-prob-56/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>13.044630 80.267740</georss:point>
		<geo:lat>13.044630</geo:lat>
		<geo:long>80.267740</geo:long>
		<media:content url="http://0.gravatar.com/avatar/0379485d11ec5bcd00f41005fe558e4b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">abiya</media:title>
		</media:content>
	</item>
		<item>
		<title>Solution to Prob #55</title>
		<link>http://ingeneur.wordpress.com/2010/09/25/solution-to-prob-55/</link>
		<comments>http://ingeneur.wordpress.com/2010/09/25/solution-to-prob-55/#comments</comments>
		<pubDate>Sat, 25 Sep 2010 05:53:10 +0000</pubDate>
		<dc:creator>abiya</dc:creator>
				<category><![CDATA[projecteuler]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[technical]]></category>

		<guid isPermaLink="false">http://ingeneur.wordpress.com/?p=232</guid>
		<description><![CDATA[The problem is stated here. One of the more simpler problems to solve in python and worked quite fast too. Here is the python code that gets it right def is_palindrome(num) : l_num = list(str(num)) l_num.reverse() return num == atoi("".join(l_num)) def reverse(num) : s_num = str(num) l_num = list(str(num)) l_num.reverse() return atoi("".join(l_num)) def is_lycherel(num, count=0) [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ingeneur.wordpress.com&amp;blog=481952&amp;post=232&amp;subd=ingeneur&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The problem is stated <a href="http://projecteuler.net/index.php?section=problems&amp;id=55">here</a>. One of the more simpler problems to solve in python and worked quite fast too. Here is the python code that gets it right <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<pre>
def is_palindrome(num) :
    l_num = list(str(num))
    l_num.reverse()
    return num == atoi("".join(l_num))

def reverse(num) :
    s_num = str(num)
    l_num = list(str(num))
    l_num.reverse()
    return atoi("".join(l_num))

def is_lycherel(num, count=0) :
    if (count &lt; 50) :
        n = num + reverse(num)
        if is_palindrome(n) :
            return False
        return is_lycherel(n, count+1)
    else :
        return True

if __name__ == &#039;__main__&#039; :
    lycherel_nums = []
    for no in range(10, 10000) :
        if(is_lycherel(no)) :
            lycherel_nums.append(no)
    print len(lycherel_nums)
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ingeneur.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ingeneur.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ingeneur.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ingeneur.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ingeneur.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ingeneur.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ingeneur.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ingeneur.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ingeneur.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ingeneur.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ingeneur.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ingeneur.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ingeneur.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ingeneur.wordpress.com/232/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ingeneur.wordpress.com&amp;blog=481952&amp;post=232&amp;subd=ingeneur&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ingeneur.wordpress.com/2010/09/25/solution-to-prob-55/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<georss:point>13.044630 80.267740</georss:point>
		<geo:lat>13.044630</geo:lat>
		<geo:long>80.267740</geo:long>
		<media:content url="http://0.gravatar.com/avatar/0379485d11ec5bcd00f41005fe558e4b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">abiya</media:title>
		</media:content>
	</item>
	</channel>
</rss>
