Skip to content

Commit 12e4646

Browse files
committed
add string
1 parent 4d665ee commit 12e4646

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

map/leetcode/leetcode-string.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,12 @@
1818
1737 1759 1781 1807 1813 1839 1849 1850 1904 1910 1915 1946 5714
1919

2020
[-复杂题]
21-
10 30 32 44 65 68 72 76 87 97 115 126 214 273 336 564 591 632 730 736 761 770 899 936
21+
30 32 44 65 68 72 76 87 97 115 126 214 273 336 564 591 632 730 736 761 770 899 936
2222
1096 1106 1163 1316 1392 1449 1531 1542 1585 1745 1830 1948
2323

24+
[-正则表达式]
25+
10
26+
2427
[-未分类]
2528
336(key=回文)
2629

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/*
2+
* @lc app=leetcode.cn id=30 lang=cpp
3+
*
4+
* [30] 串联所有单词的子串
5+
*/
6+
7+
// @lc code=start
8+
class Solution {
9+
public:
10+
vector<int> findSubstring(string s, vector<string>& words) {
11+
12+
}
13+
};
14+
// @lc code=end
15+

0 commit comments

Comments
 (0)