Euler 0036
Project Euler 100
The Problem:
Find the sum of all numbers, less than one million, which are palindromic in base 10 and base 2.
Considerations and Approach:
We are going to look at every number between 1 and the upper limit, turn it into a string and verify if it is a palindrom...