#integer #find #vector

factor

Find the factors for any integer

4 releases (breaking)

Uses old Rust 2015

0.4.0 Sep 8, 2018
0.3.0 Sep 5, 2018
0.2.0 Sep 5, 2018
0.1.0 Sep 3, 2018

#256 in #find

Download history 2/week @ 2024-04-22 4/week @ 2024-05-13 10/week @ 2024-05-20 3/week @ 2024-06-03 10/week @ 2024-06-10 7/week @ 2024-06-17 22/week @ 2024-06-24 38/week @ 2024-07-01 54/week @ 2024-07-15 9/week @ 2024-07-22 28/week @ 2024-07-29

91 downloads per month
Used in cega

MIT/Apache

6KB

Factor

Find the factors for any integer.

Usage

Cargo.toml

[dependencies]
factor = "0.4"

Add this to your crate root -

extern crate factor;

use factor::factor::factor;
use factor::factor_include::factor_include;

factor() - Will return factors of a given integer EXCLUDING 1 and the given number.

factor_include() - Will return factors of a given integer INCLUDING 1 and the given number.

***Note : Factors are returned in a vector.

#Examples::

-println!("{:?}", factor(144));
    -Prints [2, 3, 4, 6, 8, 9, 12, 16, 18, 24, 36, 48, 72]
-println!("{:?}", factor_include(144));
    -Prints [1, 2, 3, 4, 6, 8, 9, 12, 16, 18, 24, 36, 48, 72, 144]

lib.rs:

 factor() - Will return factors of a given integer EXCLUDING 1 and the given number.

 factor_include() - Will return factors of a given integer INCLUDING 1 and the given number.

No runtime deps