Difference between revisions of "Algorithms"
Jump to navigation
Jump to search
(Add link to Algorithmica dot org article on integer division) |
m (Link to possible Rust crate for integer math functions) |
||
| (One intermediate revision by the same user not shown) | |||
| Line 4: | Line 4: | ||
* https://en.algorithmica.org/hpc/arithmetic/division/ | * https://en.algorithmica.org/hpc/arithmetic/division/ | ||
| + | |||
| + | * https://gmplib.org/ | ||
| + | |||
| + | Possible Rust crate for integer math functions, does not presently require use of Rust `std` crate: | ||
| + | |||
| + | * https://docs.rs/num-integer/0.1.46/num_integer/fn.div_rem.html | ||
Latest revision as of 21:04, 8 February 2026
Integer division:
Link to Algorithmica dot org article on integer division:
Possible Rust crate for integer math functions, does not presently require use of Rust `std` crate: