https://github.com/ajkavanagh/largest-series-product
Rust code to profile both functional and imperative forms of a largest-series-product function
https://github.com/ajkavanagh/largest-series-product
Last synced: 4 months ago
JSON representation
Rust code to profile both functional and imperative forms of a largest-series-product function
- Host: GitHub
- URL: https://github.com/ajkavanagh/largest-series-product
- Owner: ajkavanagh
- Created: 2017-06-10T14:53:44.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-09-02T18:45:33.000Z (almost 5 years ago)
- Last Synced: 2025-01-11T13:17:42.619Z (5 months ago)
- Language: Rust
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Largest Series Product in Rust, functional and imperative
This is an implementation to the exercism.io "largest Series Product" exercise. I'm using exercism.io as a method to learn Rust and it's working very well (I hope).
This repository contains two implementations, one functional and the other a
mutable/imperative approach, along with benchmarking code to compare the
difference in efficienty. This is part of a blog post in my series of posts
about learning Rust.The blog entry is here: http://blog.ajkavanagh.me/2017/06/10/ergonomic-idiomatic-rust/