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
- Host: GitHub
- URL: https://github.com/scompo/projecteuler-problems
- Owner: scompo
- License: mit
- Created: 2020-05-18T23:38:55.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-19T00:31:02.000Z (about 6 years ago)
- Last Synced: 2025-01-21T00:18:59.325Z (over 1 year ago)
- Language: JavaScript
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/