OSDN Git Service

style: format markdown files with remark-lint
author24OI-bot <15963390+24OI-bot@users.noreply.github.com>
Sun, 15 Sep 2019 03:29:47 +0000 (23:29 -0400)
committer24OI-bot <15963390+24OI-bot@users.noreply.github.com>
Sun, 15 Sep 2019 03:29:47 +0000 (23:29 -0400)
docs/string/hash.md
docs/string/seq-automaton.md

index 43ac5d8..206647e 100644 (file)
@@ -90,7 +90,7 @@ void cmp(const string& s, const string& t) {
     给你若干个字符串,答案串初始为空。第 $i$ 步将第 $i$ 个字符串加到答案串的后面,但是尽量地去掉重复部分(即去掉一个最长的、是原答案串的后缀、也是第 $i$ 个串的前缀的字符串),求最后得到的字符串。
 
     字符串个数不超过 $10^5$,总长不超过 $10^6$。
-    
+
     ??? mdui-shadow-6 "题解"
         每次需要求最长的、是原答案串的后缀、也是第 $i$ 个串的前缀的字符串。枚举这个串的长度,哈希比较即可。
 
index 74b2eab..0ef1448 100644 (file)
@@ -45,7 +45,7 @@ $$
 
 ## 例题
 
-???+note "[「HEOI2015」最短不公共子串](https://www.luogu.org/problem/P4112)?
+???+note " [「HEOI2015」最短不公共子串](https://www.luogu.org/problem/P4112) ?
 
     给你两个由小写英文字母组成的串 $A$ 和 $B$,求: