Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gifnksm/ProjectEulerRust
Solving Project Euler with Rust
https://github.com/gifnksm/ProjectEulerRust
Last synced: 3 months ago
JSON representation
Solving Project Euler with Rust
- Host: GitHub
- URL: https://github.com/gifnksm/ProjectEulerRust
- Owner: gifnksm
- License: mit
- Created: 2012-02-25T02:19:06.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2024-08-01T23:24:47.000Z (3 months ago)
- Last Synced: 2024-08-02T04:28:27.223Z (3 months ago)
- Language: Rust
- Homepage:
- Size: 2.52 MB
- Stars: 192
- Watchers: 9
- Forks: 21
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Project Euler - Rust
[![Rust CI](https://github.com/gifnksm/ProjectEulerRust/actions/workflows/rust-ci.yml/badge.svg)](https://github.com/gifnksm/ProjectEulerRust/actions/workflows/rust-ci.yml)
[![codecov](https://codecov.io/gh/gifnksm/ProjectEulerRust/branch/master/graph/badge.svg?token=3PXez3ai02)](https://codecov.io/gh/gifnksm/ProjectEulerRust)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![GitHub stars](https://img.shields.io/github/stars/gifnksm/ProjectEulerRust.svg)](https://github.com/gifnksm/ProjectEulerRust/stargazers)Solving Project Euler with Rust lang.
[![Project Euler](https://projecteuler.net/profile/gifnksm.png)](https://projecteuler.net/)
## Try it out
Run all problems:
```console
cargo build --release
cargo run --release --bin euler
```Run specific problem:
```console
cargo run --release --bin p001
```Run tests:
```console
cargo run test --workspace
```Run benchmarks:
```console
cargo run bench --workspace
```## Special thanks
* [The Rust Programming Language](http://www.rust-lang.org/)
* [Project Euler](http://projecteuler.net/)
* [crates.io](https://crates.io/)