euler/036.rb

17 lines
454 B
Ruby
Raw Normal View History

2011-05-31 15:31:13 +00:00
descr=%{
The decimal number, 585 = 1001001001_(2) (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.)
}
sum=0
(0..1000000).each do |n|
if n.to_s == n.to_s.reverse && n.to_s(2) == n.to_s(2).reverse
sum+=n
puts n
end
end
puts "\nSum: #{sum}"