Skip to content

Commit 6d14162

Browse files
Update mod.rs
1 parent 95ee499 commit 6d14162

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/math/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ mod miller_rabin;
5151
mod modular_exponential;
5252
mod newton_raphson;
5353
mod nthprime;
54+
mod palindrome;
5455
mod pascal_triangle;
5556
mod perfect_cube;
5657
mod perfect_numbers;
@@ -142,6 +143,7 @@ pub use self::miller_rabin::{big_miller_rabin, miller_rabin};
142143
pub use self::modular_exponential::{mod_inverse, modular_exponential};
143144
pub use self::newton_raphson::find_root;
144145
pub use self::nthprime::nthprime;
146+
pub use self::palindrome::is_palindrome;
145147
pub use self::pascal_triangle::pascal_triangle;
146148
pub use self::perfect_cube::perfect_cube_binary_search;
147149
pub use self::perfect_numbers::perfect_numbers;

0 commit comments

Comments
 (0)