Skip to content

Commit 6a72d8c

Browse files
committed
update string
1 parent a6ac04d commit 6a72d8c

File tree

4 files changed

+48
-1
lines changed

4 files changed

+48
-1
lines changed

map/leetcode/leetcode-string.txt

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

2020
[-复杂题]
21-
44 65 68 72 76 87 97 115 126 214 273 336 564 591 632 730 736 761 770 899 936
21+
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

2424
[-字符串与哈希]
2525
30
2626

2727
[-字符串与数字]
2828
415(key=字符串相加)
29+
65(key=带e字符串转浮点数)
2930

3031
[-字符串匹配]
3132
28(key=实现strStr函数)
33+
44(key=通配符匹配)
3234

3335
[-模拟题]
3436
13 14 38 58 67 383 387 434 520

user/leetcode/44.通配符匹配.cpp

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=44 lang=cpp
3+
*
4+
* [44] 通配符匹配
5+
*/
6+
7+
// @lc code=start
8+
class Solution {
9+
public:
10+
bool isMatch(string s, string p) {
11+
12+
}
13+
};
14+
// @lc code=end
15+

user/leetcode/65.有效数字.cpp

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=65 lang=cpp
3+
*
4+
* [65] 有效数字
5+
*/
6+
7+
// @lc code=start
8+
class Solution {
9+
public:
10+
bool isNumber(string s) {
11+
12+
}
13+
};
14+
// @lc code=end
15+
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=68 lang=cpp
3+
*
4+
* [68] 文本左右对齐
5+
*/
6+
7+
// @lc code=start
8+
class Solution {
9+
public:
10+
vector<string> fullJustify(vector<string>& words, int maxWidth) {
11+
12+
}
13+
};
14+
// @lc code=end
15+

0 commit comments

Comments
 (0)