作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望通用算法查找字符串是否包含重复模式,并且字符串的任何部分都不会遗漏在重复模式之外。
例如,查看这些示例字符串:
abcabcabc - true
abcabcabcx - false
cucumbercucumber - true
cucumber - false
abaaabaaabaa - true
我看了this answer ,它解决了少数情况下的问题,但在 cucumber
示例中会失败。我需要在所有情况下都适用的东西。
最佳答案
受 https://stackoverflow.com/a/2553533/1763356 启发的 Python 解决方案是
s in (s + s)[1:-1]
假设 str.__contains__
的有效实现,这需要 O(n)
时间。
关于regex - 语言独立 : Check if a string consists of a multiple of a certain substring,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39865978/
我是一名优秀的程序员,十分优秀!