Crates.io | factor |
lib.rs | factor |
version | 0.4.0 |
source | src |
created_at | 2018-09-03 02:54:47.883741 |
updated_at | 2018-09-08 04:47:17.22742 |
description | Find the factors for any integer. |
homepage | https://github.com/RogueWorm/factor |
repository | https://github.com/RogueWorm/factor |
max_upload_size | |
id | 82696 |
size | 36,670 |
Find the factors for any integer.
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]