Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4119db0

Browse files
committed
fix tex table by not double escaping $ signs
1 parent 9550f8f commit 4119db0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/string/suffix-array.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ It is common to use the symbol \$.
4747
Then the order of the sorted cyclic shifts is equivalent to the order of the sorted suffixes, as demonstrated here with the string $dabbb$.
4848

4949
$$\begin{array}{lll}
50-
1. & abbb\\$d & abbb \\\\
51-
4. & b\\$dabb & b \\\\
52-
3. & bb\\$dab & bb \\\\
53-
2. & bbb\\$da & bbb \\\\
54-
0. & dabbb\\$ & dabbb
50+
1. & abbb\$d & abbb \\\\
51+
4. & b\$dabb & b \\\\
52+
3. & bb\$dab & bb \\\\
53+
2. & bbb\$da & bbb \\\\
54+
0. & dabbb\$ & dabbb
5555
\end{array}$$
5656

5757
Since we are going to sort cyclic shifts, we will consider **cyclic substrings**.

0 commit comments

Comments
 (0)