Comments on: Project Euler http://www.withoutatraceroute.com/2008/12/project-euler/ Time to live. Sat, 06 Sep 2014 18:43:23 +0000 hourly 1 http://wordpress.org/?v=4.0 By: MJ http://www.withoutatraceroute.com/2008/12/project-euler/comment-page-1/#comment-293 Tue, 30 Dec 2008 10:06:09 +0000 http://www.withoutatraceroute.com/?p=1736#comment-293 To make life easier:

http://mikeage.net/2006/10/05/posting-code-in-wordpress-and-comments/

http://www.thunderguy.com/semicolon/wordpress/code-markup-wordpress-plugin/

]]>
By: MJ http://www.withoutatraceroute.com/2008/12/project-euler/comment-page-1/#comment-292 Tue, 30 Dec 2008 09:59:02 +0000 http://www.withoutatraceroute.com/?p=1736#comment-292 hmm. wordpress doesn’t appear to like PHP.

$a = range(0,999,3);
$b = range(0,995,5);
$c = array_unique(array_merge($a, $b));
print array_sum($c);

]]>
By: MJ http://www.withoutatraceroute.com/2008/12/project-euler/comment-page-1/#comment-291 Tue, 30 Dec 2008 09:55:39 +0000 http://www.withoutatraceroute.com/?p=1736#comment-291 because there’s not a lot to do here after 10:00, here’s my PHP for #1:

(i wonder if wordpress is going to print, execute, or reject this)

]]>