export default (str) => {
// 建立数据结构,堆栈,保存数据
let r = []
// 给定任意子输入都返回第一个符合条件的子串
let match = (str) => {
let j = str.match(/^(0+|1+)/)[0]
let o = (j[0] ^ 1).toString().repeat(j.length)
let reg = new RegExp(`^(${j}${o})`)
if (reg.test(str)) {
return RegExp.$1
} else {
return ''
}
}
// 通过for循环控制程序运行的流程
for (let i = 0, len = str.length - 1; i < len; i++) {
let sub = match(str.slice(i))
if (sub) {
r.push(sub)
}
}
return r
}
相关文章
- 03-09力扣(LeetCode)1016. 子串能表示从 1 到 N 数字的二进制串
- 03-09leetcode 1016. 子串能表示从 1 到 N 数字的二进制串(Binary String With Substrings Representing 1 To N)
- 03-09[模拟题]leetcode1776:生成交替二进制字符串的最少操作数(easy)
- 03-092872. 子串分值和
- 03-09信息学奥赛一本通(1140:验证子串)
- 03-09[BZOJ1396] 识别子串 - 后缀自动机,线段树
- 03-09BZOJ 1396 识别子串
- 03-09蓝桥杯第八届F题:最大公共子串
- 03-09P2679 子串
- 03-09Leetcode-5058 Longest Duplicate Substring(最长重复子串)