An open API service indexing awesome lists of open source software.

https://github.com/scompo/projecteuler-problems

solutions to projecteuler
https://github.com/scompo/projecteuler-problems

Last synced: over 1 year ago
JSON representation

solutions to projecteuler

Awesome Lists containing this project

README

          

# projecteuler-problems

My solutions in js to project euler problems.

Project Euler is licensed under the [Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)](https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode) license.

The code is written in js, formatted, tested and using the deno project.

My code is released under the MIT license (a copy is available in the inside the LICENSE file).

## Structure

Each folder contains:

- `README.md` file with the problems' details.
- `SOLUTION.md` file containing the solution for the problem.
- `problemX.js` source file with the solution.
- `problemX_test.js` test for the functions.

## Other stuff

Random stuff that could be useful.

### Formatting

deno fmt
deno fmt ./XXX/problemXXX.js

### Testing

deno test
deno test ./XXX/problemXXX.js

### Running

deno run ./XXX/problemXXX.js

## Links

- https://projecteuler.net/archives
- https://deno.land/