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

https://github.com/di-void/rsbk-chpt8-ex1

Solution to exercise 1 (Summary Section) in the Rust Book Chapter 8.
https://github.com/di-void/rsbk-chpt8-ex1

Last synced: 9 months ago
JSON representation

Solution to exercise 1 (Summary Section) in the Rust Book Chapter 8.

Awesome Lists containing this project

README

          

# Mean Median Mode

Given a list of integers, use a vector and return the mean (the average value), median (when sorted, the value in the middle position), and mode (the value that occurs most often; a hash map will be helpful here) of the list.