docs: remove redundant sentence for get_multiples_in_range

This commit is contained in:
rzmk 2023-09-21 16:51:05 -04:00
parent 563133d635
commit aa3521288c
No known key found for this signature in database

View file

@ -123,8 +123,6 @@ pub fn is_multiple(x: u32, y: u32) -> bool {
/// 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