Skip to content

nikkehtine/ProjectEuler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ProjectEuler

My solutions to Project Euler problems in various languages, such as Python, Julia, etc.

My main goal is to learn mathematics and test out programming languages

Warning

Don't copy my solutions, write them all out yourself

Running solutions

  • C: cd c && ./run <FILE> or ./c/run c/<FILE>
  • Go: go run <FILE>
  • JavaScript: node <FILE>
  • Julia, Python, Ruby: name of the language + the file you want to run, i.e. python3 <FILE>

Commit message pattern

#2 (Julia): Add solution

  • 2 - problem number
    • 2, 3 - commit can affect multiple problems
  • (Julia) - the implementation language
    • (C, Python) - commit can affect multiple implementations
    • (General) - for general changes
  • Add solution - summary of the changes