Exploring Project Euler (76 & 187)
This weeks blog post will be another continuation of my Project Euler series. As a reference, I've once again included a link to my first post on this topic where I give an overview. This post will be dealing with two problems that I worked on, specifically problems 76 and 187. I will give a brief overview of each problem before diving into the concepts they discuss and my methodology for solving them. Below is the first problem I will be discussing, number 76. Initially, this seems like a large undertaking. After all, there are nearly one million pandigital numbers, so checking each one for primality would take quite some time. This is especially true because we would be examining large numbers first, which generally take longer to check for primality. There are a few ways that the scope of this problem can be drastically narrowed down though. The first and most important is by simply adding up the digits. Since al...