From 2e23b865964f95c184cd16caf0e830ab50096577 Mon Sep 17 00:00:00 2001 From: rzmk Date: Thu, 21 Sep 2023 20:51:36 +0000 Subject: [PATCH] deploy: aa3521288c3c09bffbb104cc685d8ed1b5c4b790 --- ladderz/pre_algebra/fn.get_multiples_in_range.html | 3 +-- src/ladderz/pre_algebra/unit1.rs.html | 4 ---- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/ladderz/pre_algebra/fn.get_multiples_in_range.html b/ladderz/pre_algebra/fn.get_multiples_in_range.html index 144a18f..5b0c8b4 100644 --- a/ladderz/pre_algebra/fn.get_multiples_in_range.html +++ b/ladderz/pre_algebra/fn.get_multiples_in_range.html @@ -1,5 +1,4 @@ -get_multiples_in_range in ladderz::pre_algebra - Rust
pub fn get_multiples_in_range(n: u32, end: u32) -> HashSet<u32>
Expand description

Finds all the multiples of a positive integer n up to and including end (in the range [n, end]).

-

Returns a HashSet<u32> containing all the multiples of a positive integer n in the range [n, end].

+get_multiples_in_range in ladderz::pre_algebra - Rust
pub fn get_multiples_in_range(n: u32, end: u32) -> HashSet<u32>
Expand description

Finds all the multiples of a positive integer n up to and including end (in the range [n, end]).

A multiple of n is a positive integer num where num is evenly divisible by n (i.e., num % n == 0).

Examples

use ladderz::pre_algebra::get_multiples_in_range;
diff --git a/src/ladderz/pre_algebra/unit1.rs.html b/src/ladderz/pre_algebra/unit1.rs.html
index 851f526..5c0a6ec 100644
--- a/src/ladderz/pre_algebra/unit1.rs.html
+++ b/src/ladderz/pre_algebra/unit1.rs.html
@@ -211,8 +211,6 @@
 211
 212
 213
-214
-215
 
use std::collections::HashSet;
 
 /// Finds all factor pairs for a positive integer `n`.
@@ -338,8 +336,6 @@
 
 /// Finds all the multiples of a positive integer `n` up to and including `end` (in the range [n, end]).
 ///
-/// Returns a `HashSet<u32>` containing all the multiples of a positive integer `n` in the range [n, end].
-///
 /// A multiple of `n` is a positive integer `num` where `num` is evenly divisible by `n` (i.e., `num % n == 0`).
 ///
 /// # Examples