Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 1.21 KB

README.md

File metadata and controls

22 lines (18 loc) · 1.21 KB

project-euler

This repo tracks my progress on Project Euler problems. Spoiler alert!

Only problems up to and including the 100th problem will appear here (Project Euler rules).

Progress

<img src="j-at-ch.png">

Favourites

  • Problem 12: Highly Divisible Triangular Number.
    • Neat little one - prime number properties come in handy.
  • Problem 62: Cubic Permutations.
    • Honestly I'm not sure why this has a higher difficulty rating, but I found it fun and quick to solve.
  • Problem 72: Counting Fractions.
    • Really nice counting problem that took some sieving ideas to get it up to speed.
  • Problem 86: Cuboid Route.
    • This one is a gem. It took a while to crack it and get the run time down to O(n**2) but very satisfying. My first solution to a 35% rated problem.
  • Problem 82: Path Sum: Three Ways.
    • Really pleased to get this one. Took some thinking to find a solution that wasn't the naive O(n**n). So many paths!