Project Euler – Problem 35 Solution

Yan Cui

I help clients go faster for less using serverless technologies.

Problem

The number, 197, is called a circular prime because all rotations of the digits: 197, 971, and 719, are themselves prime.

There are thirteen such primes below 100: 2, 3, 5, 7, 11, 13, 17, 31, 37, 71, 73, 79, and 97.

How many circular primes are there below one million?

Solution

open System

let hasDivisor(n:bigint) =
    let upperBound = bigint(sqrt(double(n)))
    [2I..upperBound] |> Seq.exists (fun x -> n % x = 0I)

let isPrime(n:bigint) = if n = 1I then false else not(hasDivisor(n))

let rotate(n:bigint) =
    let charList =n.ToString().ToCharArray() |> Array.toList
    let len = List.length charList
    [0..(len-1)]
    |> List.map (fun r -> List.permute (fun i -> (i + r) % len) charList)
    |> List.map (fun l -> String.Join("", l |> List.toArray))
    |> List.map bigint.Parse

let isCircularPrime(n:bigint) = rotate n |> List.forall isPrime

let answer = [2I..999999I] |> Seq.filter isPrime |> Seq.filter isCircularPrime |> Seq.length

The rotate function utilizes the List.permute function to rotate the elements in the char array representation of a given number, the rest is all pretty straight forward.

It’s worth noting that this is a brute force approach and does take quite a bit of time to run, but is also the most simple and easily understood solution. In the forum thread for the problem there are many suggestions for optimizations, and indeed many people have managed to write code which runs under a second! Also, you can improve on the performance of my solution hugely if you just cache some of the computed results (e.g. hasDivisor is a great place to start) with a dictionary.


 

Whenever you’re ready, here are 4 ways I can help you:

  1. If you want a one-stop shop to help you quickly level up your serverless skills, you should check out my Production-Ready Serverless workshop. Over 20 AWS Heroes & Community Builders have passed through this workshop, plus 1000+ students from the likes of AWS, LEGO, Booking, HBO and Siemens.
  2. If you want to learn how to test serverless applications without all the pain and hassle, you should check out my latest course, Testing Serverless Architectures.
  3. If you’re a manager or founder and want to help your team move faster and build better software, then check out my consulting services.
  4. If you just want to hang out, talk serverless, or ask for help, then you should join my FREE Community.

 


Leave a Comment

Your email address will not be published. Required fields are marked *