Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 822 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 822 Bytes

project-euler

My Project Euler solutions. Most of them are in Go (golang).

Friend code: 25362_283c6c76d5e113d78fa55a9cae991d74

Less math heavy problems

These are more about programming skills, and less about math.

  • 54 -- Compare poker hands. A good opportunity for some test-driven development.
  • 65 -- Simple calculations with big rational numbers.
  • 165 -- Find all intersection points between 5000 line segments. Good OOP exercise.
  • 206 -- Easy, despite the number.
  • 607 Marsh Crossing. Physical optimization problem.

Number theory

  • 725 Digit sum numbers.

TODO

  • 107 Minimal network -- Some graph teory
  • 206 Concealed Square -- Looks fun and not so mathy