Skip to content

Commit 2e17b5b

Browse files
committed
📝 docs: update READMEs
1 parent 38a939f commit 2e17b5b

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

Diff for: packages/dlx/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ A typescript implementation of the **DLX** algorithm.
5555
DLX is the Algorithm X that applied the dancing-link. The algorithm is used to
5656
solve the exact-cover problem.
5757

58-
If you are interested in this algorithm, you can check [here][dlx].
58+
If you are curious about this algorithm, you can visit [here][dlx] for more details.
5959

6060

6161
## Install

Diff for: packages/knuth-shuffle/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ A typescript implementation of the **Knuth-Shuffle** algorithm.
5555
Knuth-Shuffle is a shuffle algorithm, which can complete the shuffle in $O(N)$
5656
time complexity on the basis of only using a constant level of extra space.
5757

58-
If you are interested in this algorithm, you can check [here][knuth-shuffle].
58+
If you are curious about this algorithm, you can visit [here][knuth-shuffle] for more details.
5959

6060

6161
## Install

Diff for: packages/manacher/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ A typescript implementation of the **manacher** algorithm.
5555
Manacher is a linear time algorithm for listing all the palindromes that appear
5656
at the start of a given string.
5757

58-
If you are interested in this algorithm, you can check [here][manacher].
58+
If you are curious about this algorithm, you can visit [here][manacher] for more details.
5959

6060

6161
## Install

Diff for: packages/sieve-prime/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252

5353
A typescript implementation of the **Linear Sieve** algorithm for prime numbers.
5454

55-
If you are interested in this algorithm, you can check [here][sieve-prime].
55+
If you are curious about this algorithm, you can visit [here][sieve-prime] for more details.
5656

5757

5858
## Install

Diff for: packages/sieve-prime/src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
*
33
* @param N
44
* @returns
5+
* @see https://me.guanghechen.com/post/math/number-theory/sieve/#heading-%E7%BA%BF%E6%80%A7%E7%AD%9B
56
*/
67
export function sievePrime(N: number): number[] {
78
if (N <= 1) return []

Diff for: packages/sudoku/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ A typescript implementation of the **sudoku** algorithm.
7171
sudoku is a shuffle algorithm, which can complete the shuffle in $O(N)$
7272
time complexity on the basis of only using a constant level of extra space.
7373

74-
If you are interested in this algorithm, you can check [here][sudoku].
74+
If you are curious about this algorithm, you can visit [here][sudoku] for more details.
7575

7676

7777
## Install

0 commit comments

Comments
 (0)