Tagged in

Project Euler Solutions

theburningmonk.com
theburningmonk.com
the personal blog for Yan Cui
More information
Followers
923
Elsewhere

Project Euler — Problem 83 Solution

The problem description is here, and click here to see all my other Euler solutions in F#.

This is a more difficult version of problem 82, and now you can move in all four directions!


Project Euler — Problem 82 Solution

The problem description is here, and click here to see all my other Euler solutions in F#.

This is a more difficult version of problem 81, but still, as you can’t move left so we can still optimize one column at a time.


Project Euler — Problem 102 Solution

The problem description is here, and click here to see all my other Euler solutions in F#.

After reading the question, a quick search on how to test if a point is in a triangle turned up this useful SO answer. Translating the algorithm to…


Project Euler — Problem 75 Solution

The problem description is here, and click here to see all my other Euler solutions in F#.

I based my solution on Euclid’s formula for generating Pythagorean triples.