Skip to content

james-flynn-ie/projectEulerGo

Repository files navigation

title description logo social lang
James Flynn's ProjectEulerGo GitHub Pages
GitHub Page showcasing Project Euler Solutions written in Golang by DevOps Engineer, James Flynn.
images/james_pic.png
en_IE

projectEulerGo

Back to james-flynn-io.github.io

Build Status codebeat badge

What is Project Euler?

Project Euler is a series of challenging mathematical/computer programming problems that will require more than just mathematical insights to solve. Although mathematics will help you arrive at elegant and efficient methods, the use of a computer and programming skills will be required to solve most problems.

https://projecteuler.net/about

The purpose of this repository is to share solutions to the problems, and to help each other improve as programmers by sharing solutions and suggesting ways to improve the code.

Feel free to contribute!

Running the solutions

Go Playground

The Go Playground is a web service offered by golang.org.

Just copy the code from the main.go file in the solution you want to run into the code window on https://play.golang.org/, and then hit the 'Run' button.

Command Line

Alternatively, to run the solutions on your local machine (and assuming you have already installed Go), git clone the repo and then type the following in the src/solution/[problem_name] folder:

go run main.go

Have fun!