From 837f69eebb7cd2b5d77264e4c276b80eb3bda4ac Mon Sep 17 00:00:00 2001 From: wisdompeak Date: Tue, 14 Jun 2022 23:44:28 -0700 Subject: [PATCH] Update Readme.md --- String/2301.Match-Substring-After-Replacement/Readme.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/String/2301.Match-Substring-After-Replacement/Readme.md b/String/2301.Match-Substring-After-Replacement/Readme.md index 8fb5b111f..9a0b59f7b 100644 --- a/String/2301.Match-Substring-After-Replacement/Readme.md +++ b/String/2301.Match-Substring-After-Replacement/Readme.md @@ -9,3 +9,5 @@ 在KMP的主函数中,定义一个新的```equal(char a, char b)```. 当两个字符相等,或者sub的字符可以映射到s的字符中时,就返回true。 在KMP的preprocessing函数中,定义一个新的```equal2(char a, char b)```. 当两个字符相等,或者这两个字符都可以映射到同一个字符时,就返回true。 + +更新:这道题不存在正确的KMP解法,敬请注意。