Math

Creating Fractals with Web Workers

A Web Worker makes it possible to run Javascript code without blocking the user interface. That is, computations can be made in the background without locking the user interface.

Project Euler 35

To create the rotations I make a “detour” by converting the number into a string and then performing the rotations on the string.

Euler problems 18 and 67

Problems 18 and 67 differs in their size, where problem 67 is so large that a (naive) brute force algorithm would not end within reasonable time. A simple algorithm shows it self if we goes from the bottom up. The problem formulation displays the numbers such that one looks at the numbers from the top going down.

Project Euler

F# has a lot of functionality for manipulation of lists. Here is my first attempt at the solution in F#.