This commit is contained in:
rzmk 2024-01-02 04:33:10 +00:00
parent 0c6484d2d0
commit fa436468ad
2 changed files with 20 additions and 20 deletions

View file

@ -363,13 +363,13 @@
/// ### Output
///
/// ```bash
/// The factor pairs of 12 are [(1, 12), (2, 6), (3, 4)].
/// The factor pairs of 12 are {(1, 12), (2, 6), (3, 4)}.
/// ```
///
/// ## Raw Output (use `-r` or `--raw`)
///
/// ```bash
/// [(1, 12), (2, 6), (3, 4)]
/// {(1, 12), (2, 6), (3, 4)}
/// ```
</span>FactorPairs {
<span class="doccomment">/// The positive integer to find factor pairs for.
@ -391,13 +391,13 @@
/// ### Output
///
/// ```bash
/// The factors of 12 are [1, 2, 3, 4, 6, 12].
/// The factors of 12 are {1, 2, 3, 4, 6, 12}.
/// ```
///
/// ## Raw Output (use `-r` or `--raw`)
///
/// ```bash
/// [1, 2, 3, 4, 6, 12]
/// {1, 2, 3, 4, 6, 12}
/// ```
</span>Factors {
<span class="doccomment">/// The positive integer to find factors for.
@ -419,13 +419,13 @@
/// ### Output
///
/// ```bash
/// The multiples of 3 in the range [1, 10] are [3, 6, 9].
/// The multiples of 3 in the range [1, 10] are {3, 6, 9}.
/// ```
///
/// ## Raw Output (use `-r` or `--raw`)
///
/// ```bash
/// [3, 6, 9]
/// {3, 6, 9}
/// ```
</span>MultiplesInRange {
<span class="doccomment">/// The positive integer to find multiples for.
@ -449,13 +449,13 @@
/// ### Output
///
/// ```bash
/// The primes in the range [1, 10] are [2, 3, 5, 7].
/// The primes in the range [1, 10] are {2, 3, 7, 5}.
/// ```
///
/// ## Raw Output (use `-r` or `--raw`)
///
/// ```bash
/// [2, 3, 5, 7]
/// {2, 3, 7, 5}
/// ```
</span>PrimesInRange {
<span class="doccomment">/// The lower bound of the range to find primes in.
@ -479,13 +479,13 @@
/// ### Output
///
/// ```bash
/// The prime factorization of 12 is {2: 2, 3: 1}.
/// The prime factorization of 12 is {3: 1, 2: 2}.
/// ```
///
/// ## Raw Output (use `-r` or `--raw`)
///
/// ```bash
/// {2: 2, 3: 1}
/// {3: 1, 2: 2}
/// ```
</span>PrimeFactorization {
<span class="doccomment">/// The positive integer to find the prime factorization of.