Harmonic series: Difference between revisions

m
Now mentions which external crate the code needs
(Added rust section. This code is currently slow. The search through all the harmonic numbers when looking for when the series exceeds the different thresholds does not finish within a comfortable time frame on my laptop when the maximum threshold is 10.)
m (Now mentions which external crate the code needs)
Line 1,642:
 
=={{header|Rust}}==
Using big rationals and big integers from the [https://docs.rs/num/latest/num/ num] crate.
<lang rust>
use num::rational::Ratio;
19

edits