diff --git a/ladderz/index.html b/ladderz/index.html index 9f25711..19598ee 100644 --- a/ladderz/index.html +++ b/ladderz/index.html @@ -2,7 +2,7 @@
Implementations of mathematical and technical concepts in Rust.
View the modules section for the various implementations based on the subject.
Here’s an example of using the ladderz crate to get the factors and factor pairs of a number in sorted order.
+
Here’s an example of using the ladderz crate to get the factors and factor pairs of a positive integer in sorted order.
We’ll assume you’re using Bash as your terminal.
First let’s create a new Rust project and change into the project directory:
cargo new my_ladderz_project
@@ -50,7 +50,7 @@ cd my_ladderz_project
Now let’s build the project’s binary file so we can run it from the command line:
cargo build --release
-Our runnable binary file should be located at the local path ./target/release/my_ladders_project (or ./target/release/my_ladders_project.exe for Windows). Let’s run it with the number 12 as input:
+Our runnable binary file should be located at the local path ./target/release/my_ladders_project (or ./target/release/my_ladders_project.exe for Windows). Let’s run it with the positive integer 12 as input:
./target/release/my_ladderz_project 12
If you have a .exe file instead, you can run it with:
@@ -60,5 +60,5 @@ cd my_ladderz_project
List of factors of 12: [1, 2, 3, 4, 6, 12]
List of factor pairs of 12: [(1, 12), (2, 6), (3, 4)]
-Great! We’ve successfully used the ladderz crate to get the factors and factor pairs of a number in sorted order.
+Great! We’ve successfully used the ladderz crate to get the factors and factor pairs of a positive integer in sorted order.