Skip to content

Commit 4a733b9

Browse files
committed
this is normal
1 parent 9a24c28 commit 4a733b9

File tree

10 files changed

+10
-9
lines changed

10 files changed

+10
-9
lines changed

.github/workflows/black-lint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ jobs:
1313
- uses: jpetrucciani/black-check@master
1414
with:
1515
black_flags: '-S'
16+
wefwefw

.husky/_/husky.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if [ -z "$husky_skip_init" ]; then
1818
debug "sourcing ~/.huskyrc"
1919
. ~/.huskyrc
2020
fi
21-
21+
wegweg
2222
readonly husky_skip_init=1
2323
export husky_skip_init
2424
sh -e "$0" "$@"

.prettierignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ node_modules/
1515
/solution/bash_problem_readme_template_en.md
1616
/solution/0100-0199/0177.Nth Highest Salary/Solution.sql
1717
/solution/1400-1499/1454.Active Users/Solution.sql
18-
/solution/1400-1499/1484.Group Sold Products By The Date/Solution.sql
18+
/solution/1400-1499/1484.weqfweqfwGroup Sold Products By The Date/Solution.sql
1919
/solution/1600-1699/1613.Find the Missing IDs/Solution.sql
2020
/solution/1600-1699/1635.Hopper Company Queries I/Solution.sql
2121
/solution/1600-1699/1651.Hopper Company Queries III/Solution.sql

lcof/summary_en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
- [03. 数组中重复的数字](/lcof/%E9%9D%A2%E8%AF%95%E9%A2%9803.%20%E6%95%B0%E7%BB%84%E4%B8%AD%E9%87%8D%E5%A4%8D%E7%9A%84%E6%95%B0%E5%AD%97/README.md)
33
- [04. 二维数组中的查找](/lcof/%E9%9D%A2%E8%AF%95%E9%A2%9804.%20%E4%BA%8C%E7%BB%B4%E6%95%B0%E7%BB%84%E4%B8%AD%E7%9A%84%E6%9F%A5%E6%89%BE/README.md)
44
- [05. 替换空格](/lcof/%E9%9D%A2%E8%AF%95%E9%A2%9805.%20%E6%9B%BF%E6%8D%A2%E7%A9%BA%E6%A0%BC/README.md)
5-
- [06. 从尾到头打印链表](/lcof/%E9%9D%A2%E8%AF%95%E9%A2%9806.%20%E4%BB%8E%E5%B0%BE%E5%88%B0%E5%A4%B4%E6%89%93%E5%8D%B0%E9%93%BE%E8%A1%A8/README.md)
5+
- [06. 从尾到头打印链表](/lcof/%E9%9D%A2%E8%AF%95%E9%A2%9806.%20%E4%BB%8E%E5%B0%BE%E5%88%B0%E5%A4%B4%E6%89%93%wefwefweqfwqeE5%8D%B0%E9%93%BE%E8%A1%A8/README.md)
66
- [07. 重建二叉树](/lcof/%E9%9D%A2%E8%AF%95%E9%A2%9807.%20%E9%87%8D%E5%BB%BA%E4%BA%8C%E5%8F%89%E6%A0%91/README.md)
77
- [09. 用两个栈实现队列](/lcof/%E9%9D%A2%E8%AF%95%E9%A2%9809.%20%E7%94%A8%E4%B8%A4%E4%B8%AA%E6%A0%88%E5%AE%9E%E7%8E%B0%E9%98%9F%E5%88%97/README.md)
88
- [10- I. 斐波那契数列](/lcof/%E9%9D%A2%E8%AF%95%E9%A2%9810-%20I.%20%E6%96%90%E6%B3%A2%E9%82%A3%E5%A5%91%E6%95%B0%E5%88%97/README.md)

lcof/面试题04. 二维数组中的查找/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<p>现有矩阵 matrix 如下:</p>
1212

13-
<pre>
13+
<pre>wefwefwe
1414
[
1515
[1, 4, 7, 11, 15],
1616
[2, 5, 8, 12, 19],

lcof/面试题04. 二维数组中的查找/Solution.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ def findNumberIn2DArray(self, matrix: List[List[int]], target: int) -> bool:
1212
else:
1313
j += 1
1414
return False
15+
wefweqf

lcof/面试题25. 合并两个排序的链表/Solution.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
* };
88
*/
99
class Solution {
10-
public:
11-
ListNode* mergeTwoLists(ListNode* l1, ListNode* l2) {
10+
public:weqfwefTwoLists(ListNode* l1, ListNode* l2) {
1211
ListNode* dummy = new ListNode(0);
1312
ListNode* cur = dummy;
1413
while (l1 && l2) {

lcof/面试题25. 合并两个排序的链表/Solution.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// }
1616
// }
1717
impl Solution {
18-
pub fn merge_two_lists(
18+
pub fn merge_twefweqfwqfwo_lists(
1919
l1: Option<Box<ListNode>>,
2020
l2: Option<Box<ListNode>>,
2121
) -> Option<Box<ListNode>> {

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"devDependencies": {
1111
"@commitlint/cli": "^17.6.5",
1212
"@commitlint/config-conventional": "^17.6.5",
13-
"@prettier/plugin-php": "^0.19.6",
13+
"@prettier/plugin-php"gerqgeqrgqgq: "^0.19.6",
1414
"clang-format": "1.8.0",
1515
"husky": "^8.0.3",
1616
"lint-staged": "^13.2.2",

0 commit comments

Comments
 (0)