Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/james-flynn-ie/projecteulergo
Project Euler Solutions in Go
https://github.com/james-flynn-ie/projecteulergo
euler euler-exercises euler-project euler-puzzles-answered euler-solutions eulerproject go golang golang-examples
Last synced: 26 days ago
JSON representation
Project Euler Solutions in Go
- Host: GitHub
- URL: https://github.com/james-flynn-ie/projecteulergo
- Owner: james-flynn-ie
- License: mit
- Created: 2019-05-27T19:04:31.000Z (over 5 years ago)
- Default Branch: develop
- Last Pushed: 2019-08-08T17:28:36.000Z (about 5 years ago)
- Last Synced: 2024-04-23T14:17:51.608Z (7 months ago)
- Topics: euler, euler-exercises, euler-project, euler-puzzles-answered, euler-solutions, eulerproject, go, golang, golang-examples
- Language: Go
- Homepage: https://james-flynn-ie.github.io/projectEulerGo/
- Size: 95.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
---
title: James Flynn's ProjectEulerGo GitHub Pages
description: GitHub Page showcasing Project Euler Solutions written in Golang by DevOps Engineer, James Flynn.
logo: images/james_pic.png
social:
name: James Flynn
links:
- https://ie.linkedin.com/in/jamesflynnie
- https://github.com/james-flynn-ie/projectEulerGo
lang: en_IE
---# projectEulerGo
[Back to james-flynn-io.github.io](https://james-flynn-ie.github.io/)
[![Build Status](https://travis-ci.com/james-flynn-ie/projectEulerGo.svg)](https://travis-ci.com/james-flynn-ie/projectEulerGo) [![codebeat badge](https://codebeat.co/badges/16700183-8075-44b6-be22-321e02349a97)](https://codebeat.co/projects/github-com-james-flynn-ie-projecteulergo-master)
## 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.`
__
The purpose of this repository is to share solutions to the [problems](https://projecteuler.net/archives), and to help each other improve as programmers by sharing solutions and suggesting ways to improve the code.
Feel free to [contribute](https://james-flynn-ie.github.io/projectEulerGo/CONTRIBUTING)!
## 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 , and then hit the 'Run' button.
### Command Line
Alternatively, to run the solutions on your local machine (and assuming you have already installed [Go](https://golang.org/doc/install)), git clone the repo and then type the following in the src/solution/[problem_name] folder:
```go
go run main.go
```## Have fun!