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

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

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/