num-integer icon indicating copy to clipboard operation
num-integer copied to clipboard

Integer trait and functions for Rust

Results 21 num-integer issues
Sort by recently updated
recently updated
newest added

Hi, I experienced performance issue with binomial(n, k). Maybe it could be replaced by the implementation proposed by https://programming-idioms.org/idiom/67/binomial-coefficient-n-choose-k/747/rust ```rust fn binom(n: usize, k: usize) -> BigUint { let mut...