We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95ee499 commit 6d14162Copy full SHA for 6d14162
src/math/mod.rs
@@ -51,6 +51,7 @@ mod miller_rabin;
51
mod modular_exponential;
52
mod newton_raphson;
53
mod nthprime;
54
+mod palindrome;
55
mod pascal_triangle;
56
mod perfect_cube;
57
mod perfect_numbers;
@@ -142,6 +143,7 @@ pub use self::miller_rabin::{big_miller_rabin, miller_rabin};
142
143
pub use self::modular_exponential::{mod_inverse, modular_exponential};
144
pub use self::newton_raphson::find_root;
145
pub use self::nthprime::nthprime;
146
+pub use self::palindrome::is_palindrome;
147
pub use self::pascal_triangle::pascal_triangle;
148
pub use self::perfect_cube::perfect_cube_binary_search;
149
pub use self::perfect_numbers::perfect_numbers;
0 commit comments