2008-01-29 13:31:06 -05:00
|
|
|
! Copyright (c) 2008 Aaron Schaefer.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2008-10-02 18:40:49 -04:00
|
|
|
USING: combinators.short-circuit kernel math.parser math.ranges
|
2008-07-20 21:52:39 -04:00
|
|
|
project-euler.common sequences ;
|
2008-01-29 13:31:06 -05:00
|
|
|
IN: project-euler.036
|
|
|
|
|
|
|
|
! http://projecteuler.net/index.php?section=problems&id=36
|
|
|
|
|
|
|
|
! DESCRIPTION
|
|
|
|
! -----------
|
|
|
|
|
|
|
|
! The decimal number, 585 = 1001001001 (binary), is palindromic in both bases.
|
|
|
|
|
|
|
|
! Find the sum of all numbers, less than one million, which are palindromic in
|
|
|
|
! base 10 and base 2.
|
|
|
|
|
|
|
|
! (Please note that the palindromic number, in either base, may not include
|
|
|
|
! leading zeros.)
|
|
|
|
|
|
|
|
|
|
|
|
! SOLUTION
|
|
|
|
! --------
|
|
|
|
|
|
|
|
! Only check odd numbers since the binary number must begin and end with 1
|
|
|
|
|
|
|
|
<PRIVATE
|
|
|
|
|
|
|
|
: both-bases? ( n -- ? )
|
2008-11-06 01:41:24 -05:00
|
|
|
{ [ palindrome? ] [ >bin dup reverse = ] } 1&& ;
|
2008-01-29 13:31:06 -05:00
|
|
|
|
|
|
|
PRIVATE>
|
|
|
|
|
|
|
|
: euler036 ( -- answer )
|
2008-04-26 00:17:08 -04:00
|
|
|
1 1000000 2 <range> [ both-bases? ] filter sum ;
|
2008-01-29 13:31:06 -05:00
|
|
|
|
|
|
|
! [ euler036 ] 100 ave-time
|
2008-11-05 01:11:15 -05:00
|
|
|
! 1703 ms ave run time - 96.6 SD (100 trials)
|
2008-01-29 13:31:06 -05:00
|
|
|
|
2009-03-19 00:05:32 -04:00
|
|
|
SOLUTION: euler036
|