diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/1.\347\214\234\345\271\264\351\276\204/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/1.\347\214\234\345\271\264\351\276\204/solution.md" index 73fdaaad6ccc744eca122bf3db49145bed99f3e0..dd302f63bc153f7a04b87fad255adb6bd8eeb21d 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/1.\347\214\234\345\271\264\351\276\204/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/1.\347\214\234\345\271\264\351\276\204/solution.md" @@ -11,19 +11,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 18 ``` ## 选项 @@ -31,18 +31,18 @@ ### A -```cpp +```c 19 ``` ### B -```cpp +```c 20 ``` ### C -```cpp +```c 21 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/10.\345\210\206\346\225\260/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/10.\345\210\206\346\225\260/solution.md" index b99890d1681a673e8e314998cc73d43b975efe71..920033c2a7ab0867fb2204fa02310dd6076dfb98 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/10.\345\210\206\346\225\260/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/10.\345\210\206\346\225\260/solution.md" @@ -11,20 +11,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c long pow_2(int b) { long x = 2; @@ -55,7 +55,7 @@ int main() ### A -```cpp +```c long pow_2(int b) { long x = 2; @@ -84,7 +84,7 @@ int main() ### B -```cpp +```c int gcd(int a, int b) { return a % b ? gcd(b, a % b) : b; @@ -101,7 +101,7 @@ int main() ### C -```cpp +```c int gcd(int a, int b) { while (b > 0) diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/11.\346\210\220\347\273\251\345\210\206\346\236\220/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/11.\346\210\220\347\273\251\345\210\206\346\236\220/solution.md" index 2365a44ad75285def7d0b47ea230466dcd91f764..18e1f2463f459e81164ffdf807d1b8e061c7c26b 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/11.\346\210\220\347\273\251\345\210\206\346\236\220/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/11.\346\210\220\347\273\251\345\210\206\346\236\220/solution.md" @@ -50,20 +50,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c int main() { int n; @@ -91,7 +91,7 @@ int main() ### A -```cpp +```c int main() { int n, max = 0, min = 0; @@ -126,7 +126,7 @@ int main() ### B -```cpp +```c int n; int Max(int m[10005]) @@ -183,7 +183,7 @@ int main() ### C -```cpp +```c int main() { int n; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/12.\347\254\254\345\207\240\344\270\252\345\271\270\350\277\220\346\225\260/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/12.\347\254\254\345\207\240\344\270\252\345\271\270\350\277\220\346\225\260/solution.md" index b550002e970a81c960b8a4cd6d0a0e599d249156..a292735940c28c881e332ac51aad932f29d9bf05 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/12.\347\254\254\345\207\240\344\270\252\345\271\270\350\277\220\346\225\260/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/12.\347\254\254\345\207\240\344\270\252\345\271\270\350\277\220\346\225\260/solution.md" @@ -22,20 +22,20 @@ x星的国王有个怪癖,他只喜欢数字3,5和7。 ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c typedef long long LL; const LL MAX = 59084709587505; int main() @@ -65,7 +65,7 @@ int main() ### A -```cpp +```c #define LL long long LL maxs = 59084709587505; set q; @@ -98,7 +98,7 @@ int main() ### B -```cpp +```c typedef long long LL; const LL Max = 59084709587505; int a[3] = {3, 5, 7}; @@ -132,7 +132,7 @@ int main(void) ### C -```cpp +```c int main() { set st; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/13.\347\255\211\345\267\256\347\264\240\346\225\260\345\210\227/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/13.\347\255\211\345\267\256\347\264\240\346\225\260\345\210\227/solution.md" index 88a522d1c8b93e34d3b25f2c6ec2fcb904f59716..b6a7f4c4185f9008725491d7ef52813953cbc63f 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/13.\347\255\211\345\267\256\347\264\240\346\225\260\345\210\227/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/13.\347\255\211\345\267\256\347\264\240\346\225\260\345\210\227/solution.md" @@ -21,20 +21,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c const int N = 10010; int k; @@ -77,7 +77,7 @@ int main() ### A -```cpp +```c typedef long long ll; const ll maxn = 1e6 + 50; ll a[maxn]; @@ -129,7 +129,7 @@ int main() ### B -```cpp +```c const int N = 10001; int prime[N]{0}; @@ -184,7 +184,7 @@ int main() ### C -```cpp +```c typedef long long LL; set all; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/14.\344\271\230\347\247\257\346\234\200\345\244\247/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/14.\344\271\230\347\247\257\346\234\200\345\244\247/solution.md" index f68dfa1fb2a5d3507533f7400a20a415c4965c3f..9f42e43e400c85593f889b4191b3c254c3a33d9e 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/14.\344\271\230\347\247\257\346\234\200\345\244\247/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/14.\344\271\230\347\247\257\346\234\200\345\244\247/solution.md" @@ -63,20 +63,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c #define ll long long #define inf 0x7fffffff const int N = 1e5 + 10; @@ -127,7 +127,7 @@ int main() ### A -```cpp +```c #define mem(a, b) memset(a, b, sizeof(a)) #define mod 1000000009 @@ -292,7 +292,7 @@ int main() ### B -```cpp +```c #define mod 1000000009 const int N = 100010; typedef long long LL; @@ -365,7 +365,7 @@ int main() ### C -```cpp +```c int main() { int n, k; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/15.\351\224\231\350\257\257\347\245\250\346\215\256/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/15.\351\224\231\350\257\257\347\245\250\346\215\256/solution.md" index 66ba411b239ccd0aaf5dded5b151413587f1025d..7b17374521dea1ce6687ad6e067a23d1c3681faf 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/15.\351\224\231\350\257\257\347\245\250\346\215\256/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/15.\351\224\231\350\257\257\347\245\250\346\215\256/solution.md" @@ -66,20 +66,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c int a[100000]; int main() { @@ -112,7 +112,7 @@ int main() ### A -```cpp +```c int convert(string s) { stringstream str; @@ -159,7 +159,7 @@ int main() ### B -```cpp +```c int a[10005]; int main() { @@ -200,7 +200,7 @@ int main() ### C -```cpp +```c int ans[10005]; char str[100001]; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/16.\347\214\234\345\255\227\346\257\215/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/16.\347\214\234\345\255\227\346\257\215/solution.md" index 49853abdffdbee69fc6e0ecfe49f6ddb32e8708a..1e847846f13d0c1eb62e05572cc3f3bab0eb0017 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/16.\347\214\234\345\255\227\346\257\215/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/16.\347\214\234\345\255\227\346\257\215/solution.md" @@ -12,20 +12,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c int a[2014]; int main() { @@ -58,7 +58,7 @@ int main() ### A -```cpp +```c int main() { string s = "abcdefghijklmnopqrs"; @@ -83,7 +83,7 @@ int main() ### B -```cpp +```c int main() { char a[2015]; @@ -108,7 +108,7 @@ int main() ### C -```cpp +```c int main() { vector vc1; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/17.\346\210\220\347\273\251\347\273\237\350\256\241/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/17.\346\210\220\347\273\251\347\273\237\350\256\241/solution.md" index 45605224056d6c33ce938437753c1df8f0e0a223..61a69904ebc137ea7427c305ffdd638fd2e08d70 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/17.\346\210\220\347\273\251\347\273\237\350\256\241/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/17.\346\210\220\347\273\251\347\273\237\350\256\241/solution.md" @@ -29,7 +29,7 @@ yx1 请从以下四个选项中选择空白处的内容。 -```cpp +```c #include using namespace std; @@ -66,19 +66,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c if (min > sum) { min = sum; @@ -95,7 +95,7 @@ int main() ### A -```cpp +```c if (min < sum) { min = sum; @@ -110,7 +110,7 @@ int main() ### B -```cpp +```c if (min > sum) { max = sum; @@ -125,7 +125,7 @@ int main() ### C -```cpp +```c if (min > sum) { min = sum; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/18.\346\254\241\346\225\260\345\267\256/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/18.\346\254\241\346\225\260\345\267\256/solution.md" index 3f4245cbcf7a217142fa81172575e079e726cdb7..2cbd74613b67cb861af7e07ac173fb78d64a9e62 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/18.\346\254\241\346\225\260\345\267\256/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/18.\346\254\241\346\225\260\345\267\256/solution.md" @@ -55,20 +55,20 @@ bbccccddaaaacccc ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c const int N = 1010; int cnt[26]; char a[N]; @@ -100,7 +100,7 @@ int main() ### A -```cpp +```c int main() { char s[1000]; @@ -130,7 +130,7 @@ int main() ### B -```cpp +```c int cnt[1001]; int main() { @@ -165,7 +165,7 @@ int main() ### C -```cpp +```c int a[26]; int main() diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/19.\345\276\256\347\224\237\347\211\251\345\242\236\346\256\226/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/19.\345\276\256\347\224\237\347\211\251\345\242\236\346\256\226/solution.md" index 503cea31c3cb6fe4df1732c0f15f93afdc21ff18..ea5014f802d369955572238c6fba75f91a499838 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/19.\345\276\256\347\224\237\347\211\251\345\242\236\346\256\226/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/19.\345\276\256\347\224\237\347\211\251\345\242\236\346\256\226/solution.md" @@ -17,19 +17,19 @@ X出生后每隔3分钟分裂一次(数目加倍),Y出生后每隔2分钟 ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 94371840 ``` @@ -37,18 +37,18 @@ X出生后每隔3分钟分裂一次(数目加倍),Y出生后每隔2分钟 ### A -```cpp +```c 167772160 ``` ### B -```cpp +```c 47185920 ``` ### C -```cpp +```c 92160 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/2.\344\271\230\347\247\257\345\260\276\351\233\266/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/2.\344\271\230\347\247\257\345\260\276\351\233\266/solution.md" index f298f75b3df0c76743f8a6881dd4e865032bc1a3..55cc80950184a8cceb64df0f5eda32486f8d675a 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/2.\344\271\230\347\247\257\345\260\276\351\233\266/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/2.\344\271\230\347\247\257\345\260\276\351\233\266/solution.md" @@ -21,20 +21,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c int main() { int count2 = 0, count5 = 0; @@ -63,7 +63,7 @@ int main() ### A -```cpp +```c int main() { @@ -86,7 +86,7 @@ int main() ### B -```cpp +```c int a[] = {5650, 4542, 3554, 473, 946, 4114, 3871, 9073, 90, 4329, 2758, 7949, 6113, 5659, 5245, 7432, 3051, 4434, 6704, 3594, 9937, 1173, 6866, 3397, 4759, 7557, 3070, 2287, 1453, 9899, @@ -115,7 +115,7 @@ int main() ### C -```cpp +```c int main() { int t_cnt, f_cnt, data = 0; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/20.\346\230\237\347\263\273\347\202\270\345\274\271/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/20.\346\230\237\347\263\273\347\202\270\345\274\271/solution.md" index 59892d9fbe6981a5b09fec4fc6cb1250c133d828..058ecd5688a0bae6b8e7c7b6f38fa629fdd08e6a 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/20.\346\230\237\347\263\273\347\202\270\345\274\271/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/20.\346\230\237\347\263\273\347\202\270\345\274\271/solution.md" @@ -13,19 +13,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 2017-08-05 ``` @@ -33,18 +33,18 @@ ### A -```cpp +```c 2017-09-05 ``` ### B -```cpp +```c 2017-08-06 ``` ### C -```cpp +```c 2017-09-06 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/21.\350\233\207\345\275\242\345\241\253\346\225\260/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/21.\350\233\207\345\275\242\345\241\253\346\225\260/solution.md" index b2f02a15d5cb3b9b8ec2fcf777338ba0c419918a..af271fcfa991fc372af20e2c9656e2a22eeae573 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/21.\350\233\207\345\275\242\345\241\253\346\225\260/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/21.\350\233\207\345\275\242\345\241\253\346\225\260/solution.md" @@ -11,19 +11,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 761 ``` @@ -31,18 +31,18 @@ ### A -```cpp +```c 759 ``` ### B -```cpp +```c 760 ``` ### C -```cpp +```c 769 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/22.\350\267\221\346\255\245\350\256\255\347\273\203/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/22.\350\267\221\346\255\245\350\256\255\347\273\203/solution.md" index 511531ab1105ba5edcfd6dc79cecbd5dfa8e0f36..5ed2bd1e03fd06e1c2da544e628eff17e5dbc06a 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/22.\350\267\221\346\255\245\350\256\255\347\273\203/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/22.\350\267\221\346\255\245\350\256\255\347\273\203/solution.md" @@ -13,19 +13,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 3880 ``` @@ -33,18 +33,18 @@ ### A -```cpp +```c 3400 ``` ### B -```cpp +```c 3920 ``` ### C -```cpp +```c 3900 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/23.\347\211\271\345\210\253\346\225\260\347\232\204\345\222\214/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/23.\347\211\271\345\210\253\346\225\260\347\232\204\345\222\214/solution.md" index c6969e72d8075798160baf9669967e2f4f9764f0..ede2620690258d0a42637b5f8d14ebdb85c949cf 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/23.\347\211\271\345\210\253\346\225\260\347\232\204\345\222\214/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/23.\347\211\271\345\210\253\346\225\260\347\232\204\345\222\214/solution.md" @@ -34,7 +34,7 @@ 以下代码实现了这一功能,请你填补空白处的内容: -```cpp +```c #include using namespace std; @@ -74,19 +74,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c n /= 10; ``` @@ -94,18 +94,18 @@ int main() ### A -```cpp +```c n %= 10; ``` ### B -```cpp +```c break; ``` ### C -```cpp +```c continue; ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/24.\345\210\207\351\235\242\346\235\241/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/24.\345\210\207\351\235\242\346\235\241/solution.md" index 2bc1eb2d7d96928447ad3aab06b388fd0dec43b1..b3344d049be5f8faff09357f96ecd883d492ea8e 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/24.\345\210\207\351\235\242\346\235\241/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/24.\345\210\207\351\235\242\346\235\241/solution.md" @@ -12,19 +12,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 1025 ``` @@ -32,18 +32,18 @@ ### A -```cpp +```c 1024 ``` ### B -```cpp +```c 512 ``` ### C -```cpp +```c 513 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/25.\346\227\245\345\277\227\347\273\237\350\256\241/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/25.\346\227\245\345\277\227\347\273\237\350\256\241/solution.md" index df3a0a36289ca9fe16d4e75d02614c5a07541cdd..0f7329294ad2ebbd8bf9b7599ade92d1d32c7098 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/25.\346\227\245\345\277\227\347\273\237\350\256\241/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/25.\346\227\245\345\277\227\347\273\237\350\256\241/solution.md" @@ -60,7 +60,7 @@ ts id 下面的程序实现了这一功能,请你补全空白处的内容: -```cpp +```c #include using namespace std; @@ -101,19 +101,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c cnt[logs[j].y]--, j++; ``` @@ -121,18 +121,18 @@ cnt[logs[j].y]--, j++; ### A -```cpp +```c cnt[logs[j].y]--; j++; ``` ### B -```cpp +```c cnt[logs[j].y]++, j++; ``` ### C -```cpp +```c cnt[logs[j].y]++; j++; ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/26.\347\245\236\345\245\207\347\256\227\345\274\217/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/26.\347\245\236\345\245\207\347\256\227\345\274\217/solution.md" index 622cc36098da1788658db1cba7efecea7cded367..d2231e70608d40411a738a0e068c9661ece4873a 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/26.\347\245\236\345\245\207\347\256\227\345\274\217/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/26.\347\245\236\345\245\207\347\256\227\345\274\217/solution.md" @@ -20,19 +20,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c int vis[10]; int ans = 0; bool s(int i) @@ -90,7 +90,7 @@ int main() ### A -```cpp +```c bool isOk(int result, int t1, int t2) { bool flag1[10] = {0}, flag2[10] = {0}; @@ -150,7 +150,7 @@ int main() ### B -```cpp +```c int main() { int v[5], i; @@ -191,7 +191,7 @@ int main() ### C -```cpp +```c #define MAX_N 1005 bool judge1(int n) diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/27.\346\230\237\346\234\237\344\270\200/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/27.\346\230\237\346\234\237\344\270\200/solution.md" index 23e068e223fa556ccb60e22c54ee4f1cd88402f9..6f1242a0dc845abe02f7ededf7a99560cd2509bf 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/27.\346\230\237\346\234\237\344\270\200/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/27.\346\230\237\346\234\237\344\270\200/solution.md" @@ -6,19 +6,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 5217 ``` @@ -26,18 +26,18 @@ ### A -```cpp +```c 5218 ``` ### B -```cpp +```c 5216 ``` ### C -```cpp +```c 5210 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/28.\347\224\237\346\227\245\350\234\241\347\203\233/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/28.\347\224\237\346\227\245\350\234\241\347\203\233/solution.md" index e427efb65c4be25ffeb5b41268e22ce3918fa96d..4daf4590450215995244068cdc4880efd1636b3f 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/28.\347\224\237\346\227\245\350\234\241\347\203\233/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/28.\347\224\237\346\227\245\350\234\241\347\203\233/solution.md" @@ -8,19 +8,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 26 ``` @@ -28,18 +28,18 @@ ### A -```cpp +```c 24 ``` ### B -```cpp +```c 25 ``` ### C -```cpp +```c 27 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/29.\345\220\210\345\271\266\346\243\200\346\265\213/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/29.\345\220\210\345\271\266\346\243\200\346\265\213/solution.md" index ea5b486360f0c55134204830bbe8dc502ccf30d5..6a5cd8a42c385c322ee25ac583eb6933fa160284 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/29.\345\220\210\345\271\266\346\243\200\346\265\213/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/29.\345\220\210\345\271\266\346\243\200\346\265\213/solution.md" @@ -11,19 +11,19 @@ A 国估计被测的民众的感染率大概是 1%,呈均匀分布。请问 k ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 10 ``` @@ -31,18 +31,18 @@ A 国估计被测的民众的感染率大概是 1%,呈均匀分布。请问 k ### A -```cpp +```c 8 ``` ### B -```cpp +```c 9 ``` ### C -```cpp +```c 12 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/3.\345\244\247\350\241\215\346\225\260\345\210\227/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/3.\345\244\247\350\241\215\346\225\260\345\210\227/solution.md" index 03f7b627fd633e99a0faa0dab662d338b2d6de2c..2d993f83a2c7a157fd8bb69c7b7be28717027b52 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/3.\345\244\247\350\241\215\346\225\260\345\210\227/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/3.\345\244\247\350\241\215\346\225\260\345\210\227/solution.md" @@ -10,7 +10,7 @@ 请填补空白处的内容。 -```cpp +```c #include int main() { @@ -30,19 +30,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c i % 2 == 0 ``` ## 选项 @@ -50,18 +50,18 @@ i % 2 == 0 ### A -```cpp +```c i % 2 == 1 ``` ### B -```cpp +```c i / 2 == 0 ``` ### C -```cpp +```c i / 2 == 1 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/30.k\345\200\215\345\214\272\351\227\264/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/30.k\345\200\215\345\214\272\351\227\264/solution.md" index ba435c93dd20eff9639cc4d5746c7408d3bd6710..d2dc5943e7859da810a3f7f302103ceaf123b626 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/30.k\345\200\215\345\214\272\351\227\264/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/30.k\345\200\215\345\214\272\351\227\264/solution.md" @@ -36,7 +36,7 @@ 以下程序实现了该功能,请你补全空白处代码: -```cpp +```c #include using namespace std; @@ -65,19 +65,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c sum[i] = (sum[i - 1] + son[i]) % k; ``` @@ -85,18 +85,18 @@ sum[i] = (sum[i - 1] + son[i]) % k; ### A -```cpp +```c sum[i] = (sum[i] + son[i]) % k; ``` ### B -```cpp +```c sum[i] = (sum[i - 1] + son[i]) % k - 1; ``` ### C -```cpp +```c sum[i] = (sum[i - 1] + son[i - 1]) % k; ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/31.\347\272\270\347\211\214\344\270\211\350\247\222\345\275\242/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/31.\347\272\270\347\211\214\344\270\211\350\247\222\345\275\242/solution.md" index 02c956442d3d499d219895cf5507f9bb96cff468..ab28e8344460e01fa5659f6510c5278bbdad40a8 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/31.\347\272\270\347\211\214\344\270\211\350\247\222\345\275\242/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/31.\347\272\270\347\211\214\344\270\211\350\247\222\345\275\242/solution.md" @@ -19,19 +19,19 @@ A,2,3,4,5,6,7,8,9 共9张纸牌排成一个正三角形(A按1计算)。要 ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 144 ``` @@ -39,18 +39,18 @@ A,2,3,4,5,6,7,8,9 共9张纸牌排成一个正三角形(A按1计算)。要 ### A -```cpp +```c 124 ``` ### B -```cpp +```c 128 ``` ### C -```cpp +```c 132 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/32.\344\272\244\346\215\242\347\223\266\345\255\220/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/32.\344\272\244\346\215\242\347\223\266\345\255\220/solution.md" index 7f7f616b61abe4566460252f953c538d98e2750f..a66b4764c03f8625d35dafc33f60a526bf245d6f 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/32.\344\272\244\346\215\242\347\223\266\345\255\220/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/32.\344\272\244\346\215\242\347\223\266\345\255\220/solution.md" @@ -57,20 +57,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c int search(int i); int n; int a[10000] = {0}; @@ -121,7 +121,7 @@ int search(int i) ### A -```cpp +```c int main() { int n, a[10005]; @@ -144,7 +144,7 @@ int main() ### B -```cpp +```c int main() { int n; @@ -175,7 +175,7 @@ int main() ### C -```cpp +```c int main() { int n; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/33.\346\216\222\345\256\203\345\271\263\346\226\271\346\225\260/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/33.\346\216\222\345\256\203\345\271\263\346\226\271\346\225\260/solution.md" index 1d945749ed111f8421e9b3e2b4f29c817498a2ec..3e149002007700a724649cd32adc3e1ef4f06366 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/33.\346\216\222\345\256\203\345\271\263\346\226\271\346\225\260/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/33.\346\216\222\345\256\203\345\271\263\346\226\271\346\225\260/solution.md" @@ -19,19 +19,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 639172 ``` @@ -39,18 +39,18 @@ ### A -```cpp +```c 629173 ``` ### B -```cpp +```c 691372 ``` ### C -```cpp +```c 627193 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/34.REPEAT \347\250\213\345\272\217/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/34.REPEAT \347\250\213\345\272\217/solution.md" index e4d036b32eef0f02aa7a592bad8d4a3864b85473..70fb5be1d867578f9d2a5b07c7ce7dc3d39d8bee 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/34.REPEAT \347\250\213\345\272\217/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/34.REPEAT \347\250\213\345\272\217/solution.md" @@ -1026,19 +1026,19 @@ REPEAT 9: ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 403 ``` @@ -1046,18 +1046,18 @@ REPEAT 9: ### A -```cpp +```c 400 ``` ### B -```cpp +```c 401 ``` ### C -```cpp +```c 402 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/35.\347\205\244\347\220\203\346\225\260\347\233\256/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/35.\347\205\244\347\220\203\346\225\260\347\233\256/solution.md" index b48c2179ec9d60ed7a5d5fcd1abfe621fde046de..42429c21889108356bb97cf5c5267855de7d1cc8 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/35.\347\205\244\347\220\203\346\225\260\347\233\256/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/35.\347\205\244\347\220\203\346\225\260\347\233\256/solution.md" @@ -18,19 +18,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 171700 ``` @@ -38,18 +38,18 @@ ### A -```cpp +```c 166650 ``` ### B -```cpp +```c 176851 ``` ### C -```cpp +```c 182104 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/36.\351\227\250\347\211\214\345\210\266\344\275\234/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/36.\351\227\250\347\211\214\345\210\266\344\275\234/solution.md" index f23853f3b7a60b415d693b1405bd257fbb81322c..3aaedcc5f43793a1b77de4b10e06fc13ee529cc9 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/36.\351\227\250\347\211\214\345\210\266\344\275\234/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/36.\351\227\250\347\211\214\345\210\266\344\275\234/solution.md" @@ -13,19 +13,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 624 ``` @@ -33,18 +33,18 @@ ### A -```cpp +```c 626 ``` ### B -```cpp +```c 622 ``` ### C -```cpp +```c 628 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/37.\345\271\263\351\235\242\345\210\207\345\210\206/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/37.\345\271\263\351\235\242\345\210\207\345\210\206/solution.md" index b572b894eb500fb1f827ca6cec80c78ad98a69f5..ca4b053f4539445ae6bb3bc79a0de3c3e8aa941b 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/37.\345\271\263\351\235\242\345\210\207\345\210\206/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/37.\345\271\263\351\235\242\345\210\207\345\210\206/solution.md" @@ -37,7 +37,7 @@ 以下程序实现了这一功能,请你补全空白处的内容: -```cpp +```c #include using namespace std; @@ -84,19 +84,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c p.first = (s[j][1] - s[i][1]) / (s[i][0] - s[j][0]); ``` @@ -104,18 +104,18 @@ p.first = (s[j][1] - s[i][1]) / (s[i][0] - s[j][0]); ### A -```cpp +```c p.first = (s[j][1] - s[i][1]) / (s[i][1] - s[j][1]); ``` ### B -```cpp +```c p.first = (s[j][0] - s[i][0]) / (s[i][0] - s[j][0]); ``` ### C -```cpp +```c p.first = (s[j][0] - s[i][0]) / (s[i][1] - s[j][1]); ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/38.\346\266\210\351\231\244\345\260\276\344\270\200/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/38.\346\266\210\351\231\244\345\260\276\344\270\200/solution.md" index e60b971784ab19e173bbe45eb9269048c3815b35..546d7ae89fa7d0f4e16cd8867de4946d915e57b4 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/38.\346\266\210\351\231\244\345\260\276\344\270\200/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/38.\346\266\210\351\231\244\345\260\276\344\270\200/solution.md" @@ -30,7 +30,7 @@ 请你填补空白处的内容: -```cpp +```c #include void f(int x) @@ -57,19 +57,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c x = x & (x + 1); ``` @@ -77,18 +77,18 @@ x = x & (x + 1); ### A -```cpp +```c x = x & (x - 1); ``` ### B -```cpp +```c x = x && (x - 1); ``` ### C -```cpp +```c x = x && (x + 1); ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/39.\345\233\233\345\271\263\346\226\271\345\222\214/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/39.\345\233\233\345\271\263\346\226\271\345\222\214/solution.md" index efd216a0ff144b18d56c61da1a27f045bc9a01bf..e526ea011da27d84a35fceb1b9971f9282f96a88 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/39.\345\233\233\345\271\263\346\226\271\345\222\214/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/39.\345\233\233\345\271\263\346\226\271\345\222\214/solution.md" @@ -66,7 +66,7 @@ 以下程序实现了这一功能,请你补全空白处内容: -```cpp +```c #include using namespace std; @@ -122,19 +122,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c int mid = l + r >> 1; ``` @@ -142,18 +142,18 @@ int mid = l + r >> 1; ### A -```cpp +```c int mid = l + (r >> 1); ``` ### B -```cpp +```c int mid = l + r; ``` ### C -```cpp +```c int mid = l + r + 1; ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/4.\351\200\222\345\242\236\344\270\211\345\205\203\347\273\204/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/4.\351\200\222\345\242\236\344\270\211\345\205\203\347\273\204/solution.md" index 833a1eb130c2df2b2eab86e20ebaba3ce24e62fd..3783a4b86f053aa0959a9fc4dc85fd4351b8dc73 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/4.\351\200\222\345\242\236\344\270\211\345\205\203\347\273\204/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/4.\351\200\222\345\242\236\344\270\211\345\205\203\347\273\204/solution.md" @@ -55,20 +55,20 @@ C = [C1, C2, ... CN], ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c int main() { int n; @@ -120,7 +120,7 @@ int main() ### A -```cpp +```c const int maxn = 1e5 + 10; typedef long long ll; int a[maxn]; @@ -156,7 +156,7 @@ int main() ### B -```cpp +```c #define ll long long using namespace std; @@ -224,7 +224,7 @@ int main() ### C -```cpp +```c typedef long long LL; const int N = 1e5 + 10; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/40.\345\256\214\347\276\216\345\271\263\346\226\271\346\225\260/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/40.\345\256\214\347\276\216\345\271\263\346\226\271\346\225\260/solution.md" index f8656b7016e41b75327d2abd9ee33d2ee1cf863e..51fdc5467140fad7bcb7c5cd6d822c3cee29041c 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/40.\345\256\214\347\276\216\345\271\263\346\226\271\346\225\260/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/40.\345\256\214\347\276\216\345\271\263\346\226\271\346\225\260/solution.md" @@ -13,19 +13,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 1499441040 ``` @@ -33,18 +33,18 @@ ### A -```cpp +```c 1949990009 ``` ### B -```cpp +```c 914140441 ``` ### C -```cpp +```c 1101001 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/5.\347\254\254\345\207\240\345\244\251/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/5.\347\254\254\345\207\240\345\244\251/solution.md" index c2486c01704ee8f688da4e038cec0dcfda272316..a936ab84430811fc3602b552e085a4bbd8527244 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/5.\347\254\254\345\207\240\345\244\251/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/5.\347\254\254\345\207\240\345\244\251/solution.md" @@ -8,19 +8,19 @@ y年m月d日是哪一年的第几天。 ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 189 ``` ## 选项 @@ -28,18 +28,18 @@ y年m月d日是哪一年的第几天。 ### A -```cpp +```c 188 ``` ### B -```cpp +```c 190 ``` ### C -```cpp +```c 191 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/6.\346\226\271\351\230\265\350\275\254\347\275\256/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/6.\346\226\271\351\230\265\350\275\254\347\275\256/solution.md" index ce91e56cfc7432c8ee8dccdaa84cbb996c6c96eb..85ff7c817e209b89134a7af9b48f334bb554774d 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/6.\346\226\271\351\230\265\350\275\254\347\275\256/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/6.\346\226\271\351\230\265\350\275\254\347\275\256/solution.md" @@ -36,7 +36,7 @@ 请从以下四个选项中选择正确的代码填补空白处,实现方阵转置功能。 -```cpp +```c #include using namespace std; @@ -64,19 +64,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c for (i = 0; i < n; i++) { for (j = 0; j < m; j++) @@ -91,7 +91,7 @@ int main() ### A -```cpp +```c for (i = 0; i < n; i++) { for (j = 0; j < m; j++) @@ -104,7 +104,7 @@ int main() ### B -```cpp +```c for (i = 0; i < n; i++) { for (j = 0; j < m; j++) @@ -117,7 +117,7 @@ int main() ### C -```cpp +```c for (i = 0; i < n; i++) { for (j = 0; j < m; j++) diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/7.\345\244\247\346\225\260\344\271\230\346\263\225/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/7.\345\244\247\346\225\260\344\271\230\346\263\225/solution.md" index 1d16865cb2663a295a2e970f6bf988482d6b2101..43b4005580e83a8e18771b30e5122c2e3a236287 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/7.\345\244\247\346\225\260\344\271\230\346\263\225/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/7.\345\244\247\346\225\260\344\271\230\346\263\225/solution.md" @@ -7,7 +7,7 @@ 请从以下四个选项中选择正确答案,填补在空白处,使得代码能运行后能产生正确的结果。 -```cpp +```c #include using namespace std; @@ -51,19 +51,19 @@ int main(int argc, char *argv[]) ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c n2 / base + n3 / base + n4 % base ``` ## 选项 @@ -71,18 +71,18 @@ n2 / base + n3 / base + n4 % base ### A -```cpp +```c n2 % base + n3 / base + n4 / base ``` ### B -```cpp +```c n2 / base + n3 % base + n4 / base ``` ### C -```cpp +```c n2 / base + n3 / base + n4 / base ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/8.9\346\225\260\347\256\227\345\274\217/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/8.9\346\225\260\347\256\227\345\274\217/solution.md" index e09ee9411a131fa82cb13b6099076963d8b282b4..2425a0317c7b397ff5ae64fc9b2892511c3281cc 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/8.9\346\225\260\347\256\227\345\274\217/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/8.9\346\225\260\347\256\227\345\274\217/solution.md" @@ -24,20 +24,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c int bei[10]; map mp; @@ -95,7 +95,7 @@ int main() ### A -```cpp +```c const int N = 1e3 + 5; int a[15] = {9, 2, 1, 3, 8, 5, 6, 7, 4}, res = 0, vis[12], temp1; bool fun(int x) @@ -151,7 +151,7 @@ int main() ### B -```cpp +```c int st[10], res[10], book[10], cnt; int cal(int l, int r) @@ -218,7 +218,7 @@ int main() ### C -```cpp +```c typedef long long LL; const int N = 15; bool vis[N]; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/9.\346\257\224\351\205\222\351\207\217/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/9.\346\257\224\351\205\222\351\207\217/solution.md" index 1554f740bd210c52eb0f14e0b8766d5725b0e9a9..56ec63016b53313b901dbe5db377829c14c5acce 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/9.\346\257\224\351\205\222\351\207\217/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/1.\350\223\235\346\241\245\346\235\257-\345\237\272\347\241\200/9.\346\257\224\351\205\222\351\207\217/solution.md" @@ -21,20 +21,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c int d, a1[4]; int d1(int *a1) @@ -87,7 +87,7 @@ int main() ### A -```cpp +```c int main() { float n; @@ -113,7 +113,7 @@ int main() ### B -```cpp +```c int cm(int a, int b) { int temp; @@ -159,7 +159,7 @@ int main() ### C -```cpp +```c int main(void) { float a, b, c, d; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/1.\345\215\225\350\257\215\345\210\206\346\236\220/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/1.\345\215\225\350\257\215\345\210\206\346\236\220/solution.md" index 1057283ef14f99370f9cd4906eb1b3c38cf754cf..a68518dfe13e1a160eaf2692c3f0f7816dbdeaa8 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/1.\345\215\225\350\257\215\345\210\206\346\236\220/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/1.\345\215\225\350\257\215\345\210\206\346\236\220/solution.md" @@ -51,20 +51,20 @@ o 6 ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c int main() { char a[1005]; @@ -95,7 +95,7 @@ int main() ### A -```cpp +```c #define MAX 1010 int s[MAX]; @@ -138,7 +138,7 @@ int main() ### B -```cpp +```c char m[1005]; int n[1005]; char c; @@ -198,7 +198,7 @@ int main() ### C -```cpp +```c int main() { int a[128] = {0}; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/10.\351\273\204\351\207\221\350\277\236\345\210\206\346\225\260/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/10.\351\273\204\351\207\221\350\277\236\345\210\206\346\225\260/solution.md" index c073826a605e971640eae2b80d92faa31e0d5905..2cbfed245b2c16f0a41607a3404b6e0a3dde8e36 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/10.\351\273\204\351\207\221\350\277\236\345\210\206\346\225\260/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/10.\351\273\204\351\207\221\350\277\236\345\210\206\346\225\260/solution.md" @@ -46,19 +46,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 0.6180339887498948482045868343656381177203091798057628621354486227052604628189024497072072041893911375 ``` @@ -66,18 +66,18 @@ ### A -```cpp +```c 0.6180339887498948482045868343656389332927878467731611281824609112882717278172075687340936512886003869 ``` ### B -```cpp +```c 0.6180339887498948482045868343656381177203091798057628621354486227052604628189024496923340122463725713 ``` ### C -```cpp +```c 0.6180339887498948482045868343656382367107301981874040757690591496236273680999331990382076023866480180 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/11.\345\255\227\346\257\215\351\230\265\345\210\227/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/11.\345\255\227\346\257\215\351\230\265\345\210\227/solution.md" index 31d0210785d5a2eab944d97660ebd3b256f82bde..8a5cf9900f45fbd7f6e1843b887d0a8c8f19685b 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/11.\345\255\227\346\257\215\351\230\265\345\210\227/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/11.\345\255\227\346\257\215\351\230\265\345\210\227/solution.md" @@ -130,19 +130,19 @@ WSDAUGUTVWCVHEMOIRJJGTANUWTSAIXXEVZTBDHPGSRHHVWCDZVZYRJTLONIJVXEATHQXOUKBIGZONFR ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 41 ``` @@ -150,18 +150,18 @@ WSDAUGUTVWCVHEMOIRJJGTANUWTSAIXXEVZTBDHPGSRHHVWCDZVZYRJTLONIJVXEATHQXOUKBIGZONFR ### A -```cpp +```c 38 ``` ### B -```cpp +```c 39 ``` ### C -```cpp +```c 40 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/12.\345\255\227\347\254\246\344\270\262\347\274\226\347\240\201/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/12.\345\255\227\347\254\246\344\270\262\347\274\226\347\240\201/solution.md" index e5134c39c0f55716364dfeaff62134eaaa12590c..0c8460705419a5821272cf84584552dde4f3c65d 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/12.\345\255\227\347\254\246\344\270\262\347\274\226\347\240\201/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/12.\345\255\227\347\254\246\344\270\262\347\274\226\347\240\201/solution.md" @@ -47,7 +47,7 @@ LCXYZ 以下程序实现了这一功能,请你补全空白处内容: -```cpp +```c #include using namespace std; @@ -81,19 +81,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c re = re + char(temp + 'A' - 1); i += 2; ``` @@ -102,21 +102,21 @@ i += 2; ### A -```cpp +```c re = re + char(temp + 'A' - 1); i += 1; ``` ### B -```cpp +```c re = re + char(temp + 'A'); i += 1; ``` ### C -```cpp +```c re = re + char(temp + 'A'); i += 2; ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/2.\347\277\273\347\241\254\345\270\201/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/2.\347\277\273\347\241\254\345\270\201/solution.md" index 74afed9dac7a606be8c8f3276c9843e90721a130..fc9e8495b293961f3568f75891db6f87982e25a5 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/2.\347\277\273\347\241\254\345\270\201/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/2.\347\277\273\347\241\254\345\270\201/solution.md" @@ -54,20 +54,20 @@ o****o**** ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c char a[1005], b[1005]; int len, i = 0, ans = 0; @@ -92,7 +92,7 @@ int main() ### A -```cpp +```c char a[1005], b[1005]; struct node @@ -156,7 +156,7 @@ int main() ### B -```cpp +```c int main() { string a; @@ -194,7 +194,7 @@ int main() ### C -```cpp +```c int main() { string a, b; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/3.\345\210\206\347\261\273\350\256\241\346\225\260/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/3.\345\210\206\347\261\273\350\256\241\346\225\260/solution.md" index 2d305d3fc08b9a6049759b1730f8828c0ee575eb..f19e4a06cc3f4bb2bf8ed1ee104c3fd511ffaa1d 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/3.\345\210\206\347\261\273\350\256\241\346\225\260/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/3.\345\210\206\347\261\273\350\256\241\346\225\260/solution.md" @@ -33,7 +33,7 @@ 请您补全以下代码: -```cpp +```c #include using namespace std; @@ -58,19 +58,19 @@ int main(int argc, char **argv) ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c if (str[i] <= '9' && str[i] >= '0') { number++; @@ -89,7 +89,7 @@ int main(int argc, char **argv) ### A -```cpp +```c if ('0' <= str[i] <= '0') { number++; @@ -106,7 +106,7 @@ int main(int argc, char **argv) ### B -```cpp +```c if (str[i] <= '9' & str[i] >= '0') { number++; @@ -123,7 +123,7 @@ int main(int argc, char **argv) ### C -```cpp +```c if (str[i] < '9' && str[i] > '0') { number++; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/4.\344\272\272\347\211\251\347\233\270\345\205\263\346\200\247\345\210\206\346\236\220/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/4.\344\272\272\347\211\251\347\233\270\345\205\263\346\200\247\345\210\206\346\236\220/solution.md" index 52004796c362f4c54b97f3e5209ca2af5552a3e3..a01c20c6c2c88eb7ab3431b1e88bbc621cfc9733 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/4.\344\272\272\347\211\251\347\233\270\345\205\263\346\200\247\345\210\206\346\236\220/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/4.\344\272\272\347\211\251\347\233\270\345\205\263\346\200\247\345\210\206\346\236\220/solution.md" @@ -57,20 +57,20 @@ This is a story about Alice and Bob. Alice wants to send a private message to Bo ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c int main() { int k; @@ -143,7 +143,7 @@ int main() ### A -```cpp +```c int cnt, k; bool temp = true; char f[2][20] = {"Alice", "Bob"}; @@ -187,7 +187,7 @@ int main() ### B -```cpp +```c #define mem(a, b) memset(a, b, sizeof a) #define PII pair #define ll long long @@ -261,7 +261,7 @@ int main() ### C -```cpp +```c int len; string s; bool check(int i) diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/5.\350\247\243\347\240\201/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/5.\350\247\243\347\240\201/solution.md" index 3f69e17e8482d022b62c6c23b2f7afca08aabcb3..804881182d478df6e317a6138f7ba80fc85046a1 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/5.\350\247\243\347\240\201/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/5.\350\247\243\347\240\201/solution.md" @@ -36,7 +36,7 @@ HHHellllloo 以下程序实现了这一功能,请你填补空白处内容: -```cpp +```c #include using namespace std; @@ -73,19 +73,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c s2[top++] = s1[i - 1]; ``` @@ -93,18 +93,18 @@ s2[top++] = s1[i - 1]; ### A -```cpp +```c s2[++top] = s1[i - 1]; ``` ### B -```cpp +```c s2[++top] = s1[i + 1]; ``` ### C -```cpp +```c s2[top++] = s1[i + 1]; ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/6.\344\270\215\345\220\214\345\255\220\344\270\262/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/6.\344\270\215\345\220\214\345\255\220\344\270\262/solution.md" index b64a7a693934e37b178bd5b518c103890c423242..8bffecf6366775cbc5a00d1d73a4f1fcb3ee37b9 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/6.\344\270\215\345\220\214\345\255\220\344\270\262/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/6.\344\270\215\345\220\214\345\255\220\344\270\262/solution.md" @@ -12,7 +12,7 @@ 以下程序实现了这一功能,请你补全空白处的内容: -```cpp +```c #include using namespace std; @@ -33,19 +33,19 @@ int main() ## aop ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c s.insert(str.substr(i, j - i + 1)); ``` @@ -53,18 +53,18 @@ s.insert(str.substr(i, j - i + 1)); ### A -```cpp +```c s.insert(str.substr(i, j + i + 1)); ``` ### B -```cpp +```c s.insert(str.substr(i, j - i - 1)); ``` ### C -```cpp +```c s.insert(str.substr(i, j - i)); ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/7.\345\233\236\346\226\207\346\227\245\346\234\237/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/7.\345\233\236\346\226\207\346\227\245\346\234\237/solution.md" index c4d1e049209f657870be650927663bd25c8d4dce..1027a411cbb29d3a19213d57179f6d5e51ce40f3 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/7.\345\233\236\346\226\207\346\227\245\346\234\237/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/7.\345\233\236\346\226\207\346\227\245\346\234\237/solution.md" @@ -46,19 +46,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c #define MAX 110 #define INF 0x3f3f3f3f #define EXP 1e-9 @@ -198,7 +198,7 @@ int main() ### A -```cpp +```c const int inf = 0x3fffffff; const int maxn = 100100; @@ -337,7 +337,7 @@ int main() ### B -```cpp +```c int month[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; int data[8]; void guizheng() @@ -418,7 +418,7 @@ int main() ### C -```cpp +```c int days[] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; bool check(int year) diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/8.\346\240\274\345\255\220\344\270\255\350\276\223\345\207\272/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/8.\346\240\274\345\255\220\344\270\255\350\276\223\345\207\272/solution.md" index 8c3fb30316ca97370fa426fa3f464753dda49796..09cf383231598092f9588ebfbf46e28b2f504cd8 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/8.\346\240\274\345\255\220\344\270\255\350\276\223\345\207\272/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/8.\346\240\274\345\255\220\344\270\255\350\276\223\345\207\272/solution.md" @@ -8,7 +8,7 @@ StringInGrid函数会在一个指定大小的格子中打印指定的字符串 以下程序实现了这一功能,请你补全空白处内容: -```cpp +```c #include #include void StringInGrid(int width, int height, const char *s) @@ -56,19 +56,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c (width - strlen(buf) - 2) / 2, "", buf, (width - strlen(buf) - 2) / 2, "" ``` @@ -76,18 +76,18 @@ int main() ### A -```cpp +```c (width - strlen(buf) - 1) / 2, "", buf, (width - strlen(buf) - 1) / 2, "" ``` ### B -```cpp +```c (width - strlen(buf) + 1) / 2, "", buf, (width - strlen(buf) + 1) / 2, "" ``` ### C -```cpp +```c (width - strlen(buf) - 2), "", buf, (width - strlen(buf) - 2), "" ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/9.\346\234\200\345\244\247\345\205\254\345\205\261\345\255\220\344\270\262/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/9.\346\234\200\345\244\247\345\205\254\345\205\261\345\255\220\344\270\262/solution.md" index 394dcdf262d16eeebae66c668347d0643812f060..3bc38cf805ed162e7f9bedfed9af992e98c35647 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/9.\346\234\200\345\244\247\345\205\254\345\205\261\345\255\220\344\270\262/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/2.\350\223\235\346\241\245\346\235\257-\345\255\227\347\254\246\344\270\262/9.\346\234\200\345\244\247\345\205\254\345\205\261\345\255\220\344\270\262/solution.md" @@ -12,7 +12,7 @@ 请你补全空白处的内容: -```cpp +```c #include #include @@ -52,19 +52,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c a[i][j] = a[i - 1][j - 1] + 1; ``` @@ -72,18 +72,18 @@ a[i][j] = a[i - 1][j - 1] + 1; ### A -```cpp +```c a[i][j] = a[i - 1][j - 1]; ``` ### B -```cpp +```c a[i][j] = a[i - 1][j] + 1; ``` ### C -```cpp +```c a[i][j] = a[i][j - 1] + 1; ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/1.\345\270\246\345\210\206\346\225\260/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/1.\345\270\246\345\210\206\346\225\260/solution.md" index 0d98eff7c8338abb49da888ee9a6d195707680c9..d15423e21283d7c5316b78df906d467f88f2cbb1 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/1.\345\270\246\345\210\206\346\225\260/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/1.\345\270\246\345\210\206\346\225\260/solution.md" @@ -50,7 +50,7 @@ ### before -```cpp +```c #include using namespace std; @@ -58,13 +58,13 @@ using namespace std; ### after -```cpp +```c ``` ## 答案 -```cpp +```c int main() { int n, ans = 0; @@ -99,7 +99,7 @@ int main() ### A -```cpp +```c int visit[10] = {0}; int s[10]; int ans = 0; @@ -159,7 +159,7 @@ int main() ### B -```cpp +```c int parse(const char *arr, int pos, int len) { int ans = 0; @@ -209,7 +209,7 @@ int main() ### C -```cpp +```c int a[10] = {0}; int Division(int m) { diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/2.\346\212\275\347\255\276/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/2.\346\212\275\347\255\276/solution.md" index eed7e2c09790a4690849f347c826470900213f0c..22a297fcf5e5032254476b5c3a4d6b87f3785a81 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/2.\346\212\275\347\255\276/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/2.\346\212\275\347\255\276/solution.md" @@ -18,7 +18,7 @@ C国最多可以派出2人。 请你补全代码中空白的部分: -```cpp +```c #include using namespace std; @@ -59,19 +59,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c f(a, k + 1, m - i, b); ``` ## 选项 @@ -79,18 +79,18 @@ f(a, k + 1, m - i, b); ### A -```cpp +```c f(a, k, m - i, b); ``` ### B -```cpp +```c f(a, k - 1, m - i, b); ``` ### C -```cpp +```c f(a, k + 1, m + i, b); ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/3.\346\211\223\345\215\260\345\233\276\345\275\242/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/3.\346\211\223\345\215\260\345\233\276\345\275\242/solution.md" index 5ec07538772b64133e711733ebf23ca6247202f8..60d17a336e0f0af5afe5c4c60122c55310d28b1a 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/3.\346\211\223\345\215\260\345\233\276\345\275\242/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/3.\346\211\223\345\215\260\345\233\276\345\275\242/solution.md" @@ -62,7 +62,7 @@ ran=6 请你补全程序,实现该图形的打印。 -```cpp +```c #include using namespace std; @@ -109,19 +109,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c f(a, rank - 1, row, col + w / 2); ``` ## 选项 @@ -129,18 +129,18 @@ f(a, rank - 1, row, col + w / 2); ### A -```cpp +```c f(a, rank, row, col + w / 2); ``` ### B -```cpp +```c f(a, rank - 1, row, col + w); ``` ### C -```cpp +```c f(a, rank + 1, row, col + w / 2); ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/4.\347\255\211\345\267\256\346\225\260\345\210\227/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/4.\347\255\211\345\267\256\346\225\260\345\210\227/solution.md" index 380262f0c89142a4c67ef33240f5a7e1bd833cde..83bfc475819e6e9431e6b5d0ec51d357d42f8b8e 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/4.\347\255\211\345\267\256\346\225\260\345\210\227/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/4.\347\255\211\345\267\256\346\225\260\345\210\227/solution.md" @@ -37,7 +37,7 @@ 下面的代码实现了这一功能,请你补全代码中的空白处: -```cpp +```c #include using namespace std; @@ -75,19 +75,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c return b ? gcd(b, a % b) : a; ``` ## 选项 @@ -95,18 +95,18 @@ return b ? gcd(b, a % b) : a; ### A -```cpp +```c return b ? gcd(b, a) : a; ``` ### B -```cpp +```c return b ? gcd(b, a / b) : a; ``` ### C -```cpp +```c return b ? gcd(b, a + b) : a; ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/5.\346\226\220\346\263\242\351\202\243\345\245\221/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/5.\346\226\220\346\263\242\351\202\243\345\245\221/solution.md" index fd5fa436dad80cd02b2f0e9bc3655953b0952e0d..cac6462a1e6b80f04a6480110a90b0961feb604a 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/5.\346\226\220\346\263\242\351\202\243\345\245\221/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/5.\346\226\220\346\263\242\351\202\243\345\245\221/solution.md" @@ -50,20 +50,20 @@ Fibonacci数列的递推公式为:Fn=Fn-1+Fn-2,其中F1=F2=1。 ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c int fib(int n) { if (n < 3) @@ -84,7 +84,7 @@ int main() ### A -```cpp +```c int fib(int N) { if (N <= 0) @@ -113,7 +113,7 @@ int main() ### B -```cpp +```c int main() { int n, b; @@ -136,7 +136,7 @@ int main() ### C -```cpp +```c int f[1000000 + 1]; void meter(int n) diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/6.\345\217\226\346\225\260\344\275\215/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/6.\345\217\226\346\225\260\344\275\215/solution.md" index 92cdf9cdba8617fdfb5ecb5e9eb2e4c7d157cddf..e3e829a13386ad3bed67e9bf7006618bbf09443d 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/6.\345\217\226\346\225\260\344\275\215/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/6.\345\217\226\346\225\260\344\275\215/solution.md" @@ -4,7 +4,7 @@ 以下的方法就是一种。请你填补空白处的内容: -```cpp +```c #include int len(int x) { @@ -33,19 +33,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c return f(x / 10, k); ``` @@ -53,18 +53,18 @@ int main() ### A -```cpp +```c return f(x % 10, k); ``` ### B -```cpp +```c return f(x, k); ``` ### C -```cpp +```c return f(x, k / 10); ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/7.\351\200\206\346\263\242\345\205\260\350\241\250\350\276\276\345\274\217/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/7.\351\200\206\346\263\242\345\205\260\350\241\250\350\276\276\345\274\217/solution.md" index d66fb62a68af2c8086c3862db96ae27f7b5f19b1..5cd8ec985a79059b72c1b43a756578175a2bbc5d 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/7.\351\200\206\346\263\242\345\205\260\350\241\250\350\276\276\345\274\217/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/7.\351\200\206\346\263\242\345\205\260\350\241\250\350\276\276\345\274\217/solution.md" @@ -26,7 +26,7 @@ 请你补全代码: -```cpp +```c #include using namespace std; @@ -79,19 +79,19 @@ int main(int argc, char **argv) ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c v2 = evaluate(x + v1.n + 1); ``` @@ -99,18 +99,18 @@ v2 = evaluate(x + v1.n + 1); ### A -```cpp +```c v2 = evaluate(x + v1.n); ``` ### B -```cpp +```c v2 = evaluate(v1.n); ``` ### C -```cpp +```c v2 = evaluate(v1.n + 1); ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/8.\346\211\221\345\205\213\345\272\217\345\210\227/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/8.\346\211\221\345\205\213\345\272\217\345\210\227/solution.md" index 40b096417132893b820797ff08716bee902429db..96d787da5e77d0fcf15de0d3c549b0614cd23ebb 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/8.\346\211\221\345\205\213\345\272\217\345\210\227/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/8.\346\211\221\345\205\213\345\272\217\345\210\227/solution.md" @@ -10,7 +10,7 @@ A A 2 2 3 3 4 4, 一共4对扑克牌。请你把它们排成一行。 以下程序实现了这一功能,请你补全空白处内容: -```cpp +```c #include using namespace std; int n = 0; @@ -62,19 +62,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c pailie(str, k + 1, m); ``` @@ -82,18 +82,18 @@ pailie(str, k + 1, m); ### A -```cpp +```c pailie(str, k, m); ``` ### B -```cpp +```c pailie(str, k - 1, m); ``` ### C -```cpp +```c pailie(str, k + 1, m + 1); ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/9.\346\214\257\345\205\264\344\270\255\345\215\216/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/9.\346\214\257\345\205\264\344\270\255\345\215\216/solution.md" index b479fe0a5db236979f15e830d353d2fdec6d474d..8abb702f13c526fc9a76290998a1ecd6a46fd8bb 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/9.\346\214\257\345\205\264\344\270\255\345\215\216/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/3.\350\223\235\346\241\245\346\235\257-\351\200\222\345\275\222/9.\346\214\257\345\205\264\344\270\255\345\215\216/solution.md" @@ -21,7 +21,7 @@ 以下代码实现了这一功能,请你填补空白处内容: -```cpp +```c #include using namespace std; @@ -42,19 +42,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c return f(x + 1, y) + f(x, y + 1); ``` @@ -62,18 +62,18 @@ return f(x + 1, y) + f(x, y + 1); ### A -```cpp +```c return f(x - 1, y) + f(x, y - 1); ``` ### B -```cpp +```c return f(x + 1, y) + f(x, y - 1); ``` ### C -```cpp +```c return f(x + 1, y + 1) + f(x + 1, y + 1); ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/4.\350\223\235\346\241\245\346\235\257-\345\240\206\346\240\210\351\230\237\345\210\227\351\223\276\350\241\250/1.\345\240\206\347\232\204\350\256\241\346\225\260/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/4.\350\223\235\346\241\245\346\235\257-\345\240\206\346\240\210\351\230\237\345\210\227\351\223\276\350\241\250/1.\345\240\206\347\232\204\350\256\241\346\225\260/solution.md" index b05205b56a04bc5c882ada9d9210e387c2c0cc6b..d75177e2f51b0a3c954d7105d06ab220f18b2bba 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/4.\350\223\235\346\241\245\346\235\257-\345\240\206\346\240\210\351\230\237\345\210\227\351\223\276\350\241\250/1.\345\240\206\347\232\204\350\256\241\346\225\260/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/4.\350\223\235\346\241\245\346\235\257-\345\240\206\346\240\210\351\230\237\345\210\227\351\223\276\350\241\250/1.\345\240\206\347\232\204\350\256\241\346\225\260/solution.md" @@ -67,7 +67,7 @@ CPU消耗 < 1000ms 下面的代码实现了这一功能,请你补全空白处缺失的代码: -```cpp +```c #include using namespace std; @@ -128,19 +128,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c dp[i] = (C(s[i] - 1, s[i * 2 + 1]) * dp[i * 2 + 1]) % mod * dp[i * 2] % mod; ``` ## 选项 @@ -148,18 +148,18 @@ dp[i] = (C(s[i] - 1, s[i * 2 + 1]) * dp[i * 2 + 1]) % mod * dp[i * 2] % mod; ### A -```cpp +```c dp[i] = (C(s[i], s[i * 2 + 1]) * dp[i * 2 + 1]) % mod * dp[i * 2 + 1] % mod; ``` ### B -```cpp +```c dp[i] = (C(s[i] - 1, s[i * 2]) * dp[i * 2]) % mod * dp[i * 2] % mod; ``` ### C -```cpp +```c dp[i] = (C(s[i] + 1, s[i * 2 + 1]) * dp[i * 2 + 1]) % mod * dp[i * 2] % mod; ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/4.\350\223\235\346\241\245\346\235\257-\345\240\206\346\240\210\351\230\237\345\210\227\351\223\276\350\241\250/2.\345\271\270\350\277\220\346\225\260/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/4.\350\223\235\346\241\245\346\235\257-\345\240\206\346\240\210\351\230\237\345\210\227\351\223\276\350\241\250/2.\345\271\270\350\277\220\346\225\260/solution.md" index a9f1b5db32cc4a36005c0efea1cd710e67a842c8..6dc5019785ea0da74c5d4ce4e8c184a59f749263 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/4.\350\223\235\346\241\245\346\235\257-\345\240\206\346\240\210\351\230\237\345\210\227\351\223\276\350\241\250/2.\345\271\270\350\277\220\346\225\260/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/4.\350\223\235\346\241\245\346\235\257-\345\240\206\346\240\210\351\230\237\345\210\227\351\223\276\350\241\250/2.\345\271\270\350\277\220\346\225\260/solution.md" @@ -66,20 +66,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c int m, n; int len = 0; int main() @@ -124,7 +124,7 @@ int main() ### A -```cpp +```c int main() { vector a; @@ -171,7 +171,7 @@ int main() ### B -```cpp +```c int a[500005]; int main() @@ -213,7 +213,7 @@ int main() ### C -```cpp +```c struct num { int order; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/1.\346\226\271\346\240\274\345\241\253\346\225\260/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/1.\346\226\271\346\240\274\345\241\253\346\225\260/solution.md" index 35b5e15bf3b35e0e5e2e85614c60eb1737c7453c..8f2a022bc983d398e013e42f9bd11d7d8c427433 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/1.\346\226\271\346\240\274\345\241\253\346\225\260/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/1.\346\226\271\346\240\274\345\241\253\346\225\260/solution.md" @@ -14,19 +14,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 1580 ``` ## 选项 @@ -34,18 +34,18 @@ ### A -```cpp +```c 1579 ``` ### B -```cpp +```c 1582 ``` ### C -```cpp +```c 1581 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/10.\346\224\276\346\243\213\345\255\220/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/10.\346\224\276\346\243\213\345\255\220/solution.md" index a0793c1ab9a05356a65ec33d53fa4f6bf325d4f9..c42a415ed0fe1cbabf9a01b4a77da37dc03a6764 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/10.\346\224\276\346\243\213\345\255\220/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/10.\346\224\276\346\243\213\345\255\220/solution.md" @@ -8,19 +8,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 16 ``` ## 选项 @@ -28,18 +28,18 @@ ### A -```cpp +```c 17 ``` ### B -```cpp +```c 18 ``` ### C -```cpp +```c 19 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/11.\350\267\221\346\255\245\351\224\273\347\202\274/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/11.\350\267\221\346\255\245\351\224\273\347\202\274/solution.md" index f4f19c2329a2a586785818d8a18516d929db4702..f37849d6c0e26eec9e0a7edad1af07ad5cbb438a 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/11.\350\267\221\346\255\245\351\224\273\347\202\274/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/11.\350\267\221\346\255\245\351\224\273\347\202\274/solution.md" @@ -10,19 +10,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 8879 ``` @@ -30,18 +30,18 @@ ### A -```cpp +```c 8888 ``` ### B -```cpp +```c 8880 ``` ### C -```cpp +```c 8808 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/12.\345\260\217\346\234\213\345\217\213\346\216\222\351\230\237/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/12.\345\260\217\346\234\213\345\217\213\346\216\222\351\230\237/solution.md" index 940c97cf8031075826652d6c43712c52c0ae7757..0ee384072885a564ac359e8406583f01ed304120 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/12.\345\260\217\346\234\213\345\217\213\346\216\222\351\230\237/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/12.\345\260\217\346\234\213\345\217\213\346\216\222\351\230\237/solution.md" @@ -60,20 +60,20 @@ n 个小朋友站成一排。 ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c #define ll long long using namespace std; int const MAX = 1e5 + 5; @@ -151,7 +151,7 @@ int main() ### A -```cpp +```c typedef long long LL; const int N = 1e6 + 10; int h[N], s[N], tr[N]; @@ -197,7 +197,7 @@ int main() ### B -```cpp +```c struct childInfo { int location; @@ -280,7 +280,7 @@ int main() ### C -```cpp +```c struct childInfo { int location; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/13.\347\201\265\350\203\275\344\274\240\350\276\223/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/13.\347\201\265\350\203\275\344\274\240\350\276\223/solution.md" index 71db5436b409b3ff44902564dabd9edcd6815c29..2f1f40e3c04dd3ea50d8c8c2f0ea8436c5491b09 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/13.\347\201\265\350\203\275\344\274\240\350\276\223/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/13.\347\201\265\350\203\275\344\274\240\350\276\223/solution.md" @@ -80,20 +80,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c typedef long long ll; #define int ll #define rep(i, a, n) for (int i = a; i < (int)n; i++) @@ -168,7 +168,7 @@ signed main() ### A -```cpp +```c #define ll long long const int N = 3e5; ll a[N], s[N]; @@ -217,7 +217,7 @@ int main() ### B -```cpp +```c const int MAXN = 300010; int nums[MAXN]; @@ -329,7 +329,7 @@ int main() ### C -```cpp +```c typedef long long LL; const int INF = 0x3f3f3f3f; const double Pi = acos(-1); diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/14.\345\216\213\347\274\251\345\217\230\346\215\242/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/14.\345\216\213\347\274\251\345\217\230\346\215\242/solution.md" index 81cb9078befe6966aaf4c42184c4f5f02dbe5074..fcd509cf4fd5428f6eba2c072dce13e835d5a0ee 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/14.\345\216\213\347\274\251\345\217\230\346\215\242/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/14.\345\216\213\347\274\251\345\217\230\346\215\242/solution.md" @@ -69,7 +69,7 @@ a5: 2出现过,最后一次为原序列的a3,在a3后、a5前有1种数字 以下程序实现了这一功能,请你补全空白处的内容: -```cpp +```c #include using namespace std; @@ -143,19 +143,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c query(a, b, (k << 1) + 1, l, mid) + query(a, b, (k + 1) << 1, mid, r) ``` @@ -163,18 +163,18 @@ query(a, b, (k << 1) + 1, l, mid) + query(a, b, (k + 1) << 1, mid, r) ### A -```cpp +```c query(a, b, (k >> 1) + 1, l, mid) + query(a, b, (k + 1) >> 1, mid, r) ``` ### B -```cpp +```c query(a, b, k << 1, l, mid) + query(a, b, k << 1, mid, r) ``` ### C -```cpp +```c query(a, b, (k << 1) + 1, l, mid) + query(a, b, (k + 1) >> 1, mid, r) ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/15.\346\230\216\347\240\201/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/15.\346\230\216\347\240\201/solution.md" index f91bcf9fdf64a2daa381aecfaf77338a5b44b20c..6150ebd9d054bb79d2fd9607ce43c0c2b09e5111 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/15.\346\230\216\347\240\201/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/15.\346\230\216\347\240\201/solution.md" @@ -41,19 +41,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 387420489 ``` @@ -61,18 +61,18 @@ ### A -```cpp +```c 10000000000 ``` ### B -```cpp +```c 16777216 ``` ### C -```cpp +```c 43046721 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/16.\344\270\211\344\275\223\346\224\273\345\207\273/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/16.\344\270\211\344\275\223\346\224\273\345\207\273/solution.md" index 9c59a48c67108af142bba35339ee053da6cc85a7..d560469c69c7dc6bdc63f7415e0a5c618d4f76da 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/16.\344\270\211\344\275\223\346\224\273\345\207\273/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/16.\344\270\211\344\275\223\346\224\273\345\207\273/solution.md" @@ -63,7 +63,7 @@ 以下程序实现了这一功能,请你补全空白处的内容: -```cpp +```c #include using namespace std; @@ -166,19 +166,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c bp[get(i, j, k)] += s[get(x, y, z)] * t; ``` @@ -186,18 +186,18 @@ bp[get(i, j, k)] += s[get(x, y, z)] * t; ### A -```cpp +```c bp[get(i, j, k)] = s[get(x, y, z)] * t; ``` ### B -```cpp +```c bp[get(i, j, k)] *= s[get(x, y, z)] * t; ``` ### C -```cpp +```c bp[get(i, j, k)] = s[get(x, y, z)] + t; ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/17.\345\205\260\351\241\277\350\232\202\350\232\201/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/17.\345\205\260\351\241\277\350\232\202\350\232\201/solution.md" index e258caf99739458bd74a9097901d09e2ce47957c..2872345157865e0a96cf9d258af4d3e85070e270 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/17.\345\205\260\351\241\277\350\232\202\350\232\201/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/17.\345\205\260\351\241\277\350\232\202\350\232\201/solution.md" @@ -72,7 +72,7 @@ 以下程序实现了该功能,请你补全空白处内容: -```cpp +```c #include using namespace std; @@ -160,19 +160,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c if (direction == Dup) nRow -= 1; else if (direction == Dright) @@ -187,7 +187,7 @@ else ### A -```cpp +```c if (direction == Dup) nRow += 1; else if (direction == Dright) @@ -201,7 +201,7 @@ else ### B -```cpp +```c if (direction == Dup) nRow += 1; else if (direction == Dright) @@ -214,7 +214,7 @@ else ### C -```cpp +```c if (direction == Dup) nRow -= 1; else if (direction == Dright) diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/18.\350\236\272\346\227\213\346\212\230\347\272\277/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/18.\350\236\272\346\227\213\346\212\230\347\272\277/solution.md" index 18781ff293153cb572eff0f61cd7d77e94e710fb..216bc98c7ec62358fbc474b21bed4acdd4b21dea 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/18.\350\236\272\346\227\213\346\212\230\347\272\277/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/18.\350\236\272\346\227\213\346\212\230\347\272\277/solution.md" @@ -39,7 +39,7 @@ X和Y 以下程序实现了该功能,请你补全空白处内容: -```cpp +```c #include using namespace std; @@ -69,19 +69,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c sum += (long long)y > 0 ? (2 * y + y + x) : (6 * y - y - x); ``` @@ -89,18 +89,18 @@ sum += (long long)y > 0 ? (2 * y + y + x) : (6 * y - y - x); ### A -```cpp +```c sum += (long long)y > 0 ? (2 * y + x) : (6 * y - y - x); ``` ### B -```cpp +```c sum += (long long)y > 0 ? (2 * y + y + x) : (6 * y - x); ``` ### C -```cpp +```c sum += (long long)y > 0 ? (2 * y + x) : (6 * y - x); ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/2.\347\255\211\350\205\260\344\270\211\350\247\222\345\275\242/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/2.\347\255\211\350\205\260\344\270\211\350\247\222\345\275\242/solution.md" index 94e3865f0eae0f69d8db91cf04397b5499fd2d33..ac51236234a0e52de7730af35262c4f86172d4a6 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/2.\347\255\211\350\205\260\344\270\211\350\247\222\345\275\242/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/2.\347\255\211\350\205\260\344\270\211\350\247\222\345\275\242/solution.md" @@ -52,19 +52,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c string s; void init() { @@ -122,7 +122,7 @@ int main() ### A -```cpp +```c int main() { int n; @@ -271,7 +271,7 @@ int main() ### B -```cpp +```c int a[3005], n; char m[1300][1300]; void init() @@ -345,7 +345,7 @@ int main() ### C -```cpp +```c string str; stringstream ss; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/3.\346\211\277\345\216\213\350\256\241\347\256\227/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/3.\346\211\277\345\216\213\350\256\241\347\256\227/solution.md" index 38a47d2dcc101502afd21f6e4f53d6bc2506f359..1f68cc019f0fff9963c78cea04a39abc8db0398b 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/3.\346\211\277\345\216\213\350\256\241\347\256\227/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/3.\346\211\277\345\216\213\350\256\241\347\256\227/solution.md" @@ -58,7 +58,7 @@ X X X X X X X X X X X X X X X X X X X X X X X X X X X X X X 以下的代码可以计算出点子称的示数,请你补全它: -```cpp +```c #include using namespace std; @@ -97,19 +97,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c a[i + 1][j + 1] += (0.5 * a[i][j]); ``` ## 选项 @@ -117,18 +117,18 @@ a[i + 1][j + 1] += (0.5 * a[i][j]); ### A -```cpp +```c a[i + 1][j] += (0.5 * a[i][j]); ``` ### B -```cpp +```c a[i][j + 1] += (0.5 * a[i][j]); ``` ### C -```cpp +```c a[i + 1][j + 1] = (0.5 * a[i][j]); ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/4.\345\210\206\345\267\247\345\205\213\345\212\233/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/4.\345\210\206\345\267\247\345\205\213\345\212\233/solution.md" index b8705989369c4cc17ee685c76cb3fadda480b8f7..0a665648e0b9f8d823e44533bfe4a15254122240 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/4.\345\210\206\345\267\247\345\205\213\345\212\233/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/4.\345\210\206\345\267\247\345\205\213\345\212\233/solution.md" @@ -46,20 +46,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c bool cmp(pair a, pair b) { return a.first > b.first; @@ -106,7 +106,7 @@ int main() ### A -```cpp +```c int main() { int n, k; @@ -138,7 +138,7 @@ int main() ### B -```cpp +```c typedef struct { int h, w; @@ -192,7 +192,7 @@ int main() ### C -```cpp +```c int co[100100][2]; int coun(int n, int x) diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/5.\351\242\240\345\200\222\347\232\204\344\273\267\347\211\214/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/5.\351\242\240\345\200\222\347\232\204\344\273\267\347\211\214/solution.md" index 403ea980588f3845036cdc11f4331e0d4b75551d..e04d7af8dbf17cd574da5360fcb6d0f96e2e49d7 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/5.\351\242\240\345\200\222\347\232\204\344\273\267\347\211\214/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/5.\351\242\240\345\200\222\347\232\204\344\273\267\347\211\214/solution.md" @@ -24,20 +24,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c int main() { int num1[7] = {0, 1, 2, 5, 6, 8, 9}; @@ -97,7 +97,7 @@ int main() ### A -```cpp +```c void i2s(int num, string &str) { stringstream ss; @@ -179,7 +179,7 @@ int main() ### B -```cpp +```c #define ll long long using namespace std; int flag(int n) @@ -236,7 +236,7 @@ int main() ### C -```cpp +```c int num[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; int dnum[] = {0, 1, 2, -1, -1, 5, 9, -1, 8, 6}; int main() diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/6.\346\226\271\347\250\213\346\225\264\346\225\260\350\247\243/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/6.\346\226\271\347\250\213\346\225\264\346\225\260\350\247\243/solution.md" index f3177170881593a6b15051ba797a071e2fdcd5b3..f4026fca7ef1cade571723b33506030309f33737 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/6.\346\226\271\347\250\213\346\225\264\346\225\260\350\247\243/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/6.\346\226\271\347\250\213\346\225\264\346\225\260\350\247\243/solution.md" @@ -35,7 +35,7 @@ 以下程序可以实现该功能,请你计算该程序的算法复杂度: -```cpp +```c #include using namespace std; @@ -74,19 +74,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c O(n^1.5) ``` ## 选项 @@ -94,18 +94,18 @@ O(n^1.5) ### A -```cpp +```c O(n^3) ``` ### B -```cpp +```c O(n^2) ``` ### C -```cpp +```c O(n^2.5) ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/7.7\346\256\265\347\240\201/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/7.7\346\256\265\347\240\201/solution.md" index 606fd592e37f3bc7189cbe072e587f7c57237062..1603c8ca693457c0cdfc97bc7098ae3e28ccd384 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/7.7\346\256\265\347\240\201/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/7.7\346\256\265\347\240\201/solution.md" @@ -26,19 +26,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 80 ``` ## 选项 @@ -46,18 +46,18 @@ ### A -```cpp +```c 90 ``` ### B -```cpp +```c 70 ``` ### C -```cpp +```c 78 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/8.\345\210\206\347\263\226\346\236\234/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/8.\345\210\206\347\263\226\346\236\234/solution.md" index d3a33b6c873f7ba5b2b09d9b2f5356f2e804f22b..3556c612aaf2b9ffa1704c22f7f639afb2251049 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/8.\345\210\206\347\263\226\346\236\234/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/8.\345\210\206\347\263\226\346\236\234/solution.md" @@ -41,20 +41,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c int main() { int n; @@ -95,7 +95,7 @@ int main() ### A -```cpp +```c int main() { int n, m, count = 0, t = 0; @@ -144,7 +144,7 @@ int main() ### B -```cpp +```c int n; int a[100]; int main() @@ -201,7 +201,7 @@ int main() ### C -```cpp +```c int main() { int n; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/9.\345\244\272\345\206\240\346\246\202\347\216\207/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/9.\345\244\272\345\206\240\346\246\202\347\216\207/solution.md" index e8d007c3c3ab2966616fe21bb22290e333153077..f802c67af2f1a2a8387dedfbe0988f3b168ae8ce 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/9.\345\244\272\345\206\240\346\246\202\347\216\207/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/5.\350\223\235\346\241\245\346\235\257-\346\250\241\346\213\237/9.\345\244\272\345\206\240\346\246\202\347\216\207/solution.md" @@ -26,20 +26,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c int main() { float a[4][4] = {0, 0.1, 0.3, 0.5, 0.9, 0, 0.7, 0.4, 0.7, 0.3, 0, 0.2, 0.5, 0.6, 0.8, 0}; @@ -66,7 +66,7 @@ int main() ### A -```cpp +```c int main() { int i, j; @@ -92,7 +92,7 @@ int main() ### B -```cpp +```c double p[3]; int main() { @@ -116,7 +116,7 @@ int main() ### C -```cpp +```c double rate[4][4] = { {0, 0.1, 0.3, 0.5}, {0.9, 0, 0.7, 0.4}, diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/1.\345\244\247\350\207\243\347\232\204\346\227\205\350\264\271/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/1.\345\244\247\350\207\243\347\232\204\346\227\205\350\264\271/solution.md" index a31ca97ae8d5f17eb750d096a585f61529f4b123..c13f69df0a70988d88d93b90e92c01af4b3937c8 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/1.\345\244\247\350\207\243\347\232\204\346\227\205\350\264\271/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/1.\345\244\247\350\207\243\347\232\204\346\227\205\350\264\271/solution.md" @@ -54,20 +54,20 @@ J大臣想知道:他从某一个城市出发,中间不休息,到达另一 ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c struct edge { int to, cost; @@ -116,7 +116,7 @@ int main() ### A -```cpp +```c const int maxd = 10000 + 50; struct Point @@ -166,7 +166,7 @@ int main() ### B -```cpp +```c #define _for(i, a, b) for (int i = a; i < b; i++) #define _unfor(i, a, b) for (int i = a; i >= b; i--) #define RI(a) scanf("%d", &a) @@ -239,7 +239,7 @@ int main() ### C -```cpp +```c #define mem(a, b) memset(a, b, sizeof(a)) #define ll long long const double eps = 3e-8; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/10.\350\267\263\350\232\261\350\234\242/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/10.\350\267\263\350\232\261\350\234\242/solution.md" index 7d418fba2ae31a3565a6617fd825de29a238b3b5..dd96751dd23c6a4e2b32a57e9dc643b804c25011 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/10.\350\267\263\350\232\261\350\234\242/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/10.\350\267\263\350\232\261\350\234\242/solution.md" @@ -18,20 +18,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c const int MAXN = 1e7; int arr[9] = {4, 3, 2, 1, 0, 8, 7, 6, 5}; @@ -120,7 +120,7 @@ int main() ### A -```cpp +```c string start = "012345678"; string e = "087654321"; int main() @@ -165,7 +165,7 @@ int main() ### B -```cpp +```c struct node { string str; @@ -216,7 +216,7 @@ int main() ### C -```cpp +```c int dir[] = {1, -1, 2, -2}; unordered_map dist; string S = "12345678X", T = "87654321X"; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/11.\347\275\221\347\273\234\345\210\206\346\236\220/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/11.\347\275\221\347\273\234\345\210\206\346\236\220/solution.md" index b9980979ca7e2dc113d2a40eb04713cc1e67409f..f68a944244c380f407b0db50280fb9907d0cdcad 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/11.\347\275\221\347\273\234\345\210\206\346\236\220/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/11.\347\275\221\347\273\234\345\210\206\346\236\220/solution.md" @@ -67,20 +67,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c int main() { int n = 0; @@ -179,7 +179,7 @@ int main() ### A -```cpp +```c int const N = 10010; using namespace std; int n, m; @@ -263,7 +263,7 @@ int main() ### B -```cpp +```c const int N = 10010; int p[N], d[N]; int find(int x) @@ -312,7 +312,7 @@ int main() ### C -```cpp +```c const int maxn = 10005; int a[maxn][maxn]; int dfs_vis[maxn]; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/12.\346\263\242\345\212\250\346\225\260\345\210\227/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/12.\346\263\242\345\212\250\346\225\260\345\210\227/solution.md" index d0985a116f6dc3283dcfe24cf0456a3d87f4d1e9..273cfc0b796c4892bbd99adcd5413e98a52753a9 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/12.\346\263\242\345\212\250\346\225\260\345\210\227/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/12.\346\263\242\345\212\250\346\225\260\345\210\227/solution.md" @@ -40,20 +40,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c long long n, s, a, b; long long sum; long long cnt = 0; @@ -100,7 +100,7 @@ int main(void) ### A -```cpp +```c #define MAXN 1100 #define MOD 100000007 using namespace std; @@ -147,7 +147,7 @@ int main() ### B -```cpp +```c int n, s, a, b; int num; @@ -185,7 +185,7 @@ int main() ### C -```cpp +```c const int MAXN = 1050; typedef long long ll; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/13.\345\255\227\344\270\262\346\216\222\345\272\217/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/13.\345\255\227\344\270\262\346\216\222\345\272\217/solution.md" index 9c0ca9b5d953b38676cde273984586ca12de8661..f77f223d4dcf91573ec8f760553ebf947d744974 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/13.\345\255\227\344\270\262\346\216\222\345\272\217/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/13.\345\255\227\344\270\262\346\216\222\345\272\217/solution.md" @@ -59,7 +59,7 @@ jihgfeeddccbbaa 下面的程序实现了这一功能,请你补全空白处内容: -```cpp +```c #include using namespace std; const int maxn = 1e6 + 5; @@ -166,19 +166,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c dfs2(pre + len, x - 1, aft - len, rest, res); ``` @@ -186,18 +186,18 @@ dfs2(pre + len, x - 1, aft - len, rest, res); ### A -```cpp +```c dfs2(pre + len, x, aft - len, rest, res); ``` ### B -```cpp +```c dfs2(pre + len, x - 1, aft - 1, rest, res); ``` ### C -```cpp +```c dfs2(pre + len, x - 1, aft, rest, res); ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/2.\346\226\271\346\240\274\345\210\206\345\211\262/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/2.\346\226\271\346\240\274\345\210\206\345\211\262/solution.md" index a6668bb573eb274034133cc24e97c3b09c44b911..65926a1b5f477a674c1a41f95bfcc898e48fe77f 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/2.\346\226\271\346\240\274\345\210\206\345\211\262/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/2.\346\226\271\346\240\274\345\210\206\345\211\262/solution.md" @@ -23,19 +23,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 509 ``` ## 选项 @@ -43,18 +43,18 @@ ### A -```cpp +```c 508 ``` ### B -```cpp +```c 510 ``` ### C -```cpp +```c 600 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/3.\345\207\221\347\256\227\345\274\217/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/3.\345\207\221\347\256\227\345\274\217/solution.md" index aa9f2c419ca7fd03ce41f6a9bfb5b64aadfbdaea..9c5b27ff86b37be4789e25697693e6bfe6aec51a 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/3.\345\207\221\347\256\227\345\274\217/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/3.\345\207\221\347\256\227\345\274\217/solution.md" @@ -21,19 +21,19 @@ A + —- + ——–- = 10 ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 29 ``` ## 选项 @@ -41,18 +41,18 @@ A + —- + ——–- = 10 ### A -```cpp +```c 28 ``` ### B -```cpp +```c 30 ``` ### C -```cpp +```c 31 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/4.\345\210\206\351\205\215\345\217\243\347\275\251/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/4.\345\210\206\351\205\215\345\217\243\347\275\251/solution.md" index 64a742ea1cbd7c1be82fbb8b49b73866786c58f7..3629ebb0b9c4e8d81a2703d0a4f35d31fcf4a677 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/4.\345\210\206\351\205\215\345\217\243\347\275\251/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/4.\345\210\206\351\205\215\345\217\243\347\275\251/solution.md" @@ -14,7 +14,7 @@ masks = [9090400, 8499400, 5926800, 8547000, 4958200, 4422600, 5751200, 4175600, 下面的代码实现了这一功能,请你填补空白处的内容。 -```cpp +```c #include using namespace std; @@ -50,19 +50,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c dfs(u + 1, s1, s2 + num[u]); ``` ## 选项 @@ -70,18 +70,18 @@ int main() ### A -```cpp +```c dfs(u, s1, s2 + num[u]); ``` ### B -```cpp +```c dfs(u + 1, s1 + num[u], s2 + num[u]); ``` ### C -```cpp +```c dfs(u + 1, s1 + num[u], s2); ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/5.\346\220\255\347\247\257\346\234\250/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/5.\346\220\255\347\247\257\346\234\250/solution.md" index 7768df4d83e131f10f8aa46a72c5eb5d477a1e9a..e57dc875d8c2998a58d4a43f0bc41e761808e858 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/5.\346\220\255\347\247\257\346\234\250/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/5.\346\220\255\347\247\257\346\234\250/solution.md" @@ -32,19 +32,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 768 ``` ## 选项 @@ -52,18 +52,18 @@ ### A -```cpp +```c 767 ``` ### B -```cpp +```c 769 ``` ### C -```cpp +```c 770 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/6.\350\266\205\347\272\247\350\203\266\346\260\264/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/6.\350\266\205\347\272\247\350\203\266\346\260\264/solution.md" index cbab5533a1f2470d38f7b6c838b1d11083e40858..7c4e7670cbd222d33032c8fa3bb57b4822809f7a 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/6.\350\266\205\347\272\247\350\203\266\346\260\264/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/6.\350\266\205\347\272\247\350\203\266\346\260\264/solution.md" @@ -26,7 +26,7 @@ 下面的代码实现了这一功能,请你补全空白处。 -```cpp +```c const int maxn = 100005; int numv[maxn]; @@ -69,19 +69,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c a = (v[idx] * v[idx - 1] + dfs(idx - 2) + numv[idx - 2] * (v[idx] + v[idx - 1])); ``` ## 选项 @@ -89,18 +89,18 @@ a = (v[idx] * v[idx - 1] + dfs(idx - 2) + numv[idx - 2] * (v[idx] + v[idx - 1])) ### A -```cpp +```c a = (v[idx] * v[idx - 1] + dfs(idx - 2)); ``` ### B -```cpp +```c a = (dfs(idx - 2) + numv[idx - 2] * (v[idx] + v[idx - 1])); ``` ### C -```cpp +```c a = (v[idx] * v[idx - 1] + dfs(idx - 1) + numv[idx + 2] * (v[idx] + v[idx - 1])); ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/7.\347\254\25439\347\272\247\345\217\260\351\230\266/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/7.\347\254\25439\347\272\247\345\217\260\351\230\266/solution.md" index 40934098cf5d505ad2f988369fdf854ea113eca6..6f1321137b4e254341999794d7043374ca2b7de9 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/7.\347\254\25439\347\272\247\345\217\260\351\230\266/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/7.\347\254\25439\347\272\247\345\217\260\351\230\266/solution.md" @@ -15,20 +15,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c int ans = 0; int sum = 0; vector a(40, 0); @@ -63,7 +63,7 @@ int main() ### A -```cpp +```c int ans = 0; void dfs(int k, int n) { @@ -88,7 +88,7 @@ int main() ### B -```cpp +```c int countt = 0; void f(int stair, int step) @@ -116,7 +116,7 @@ int main(void) ### C -```cpp +```c #define LEFT 0 #define RIGHT 1 using namespace std; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/8.\346\235\216\347\231\275\346\211\223\351\205\222/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/8.\346\235\216\347\231\275\346\211\223\351\205\222/solution.md" index 4c66f26e7f5fd1571b00933fa0baa4d92c0e50a3..df50e5ec10d23859e74f0cb69f4564eaaf16ee6a 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/8.\346\235\216\347\231\275\346\211\223\351\205\222/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/8.\346\235\216\347\231\275\346\211\223\351\205\222/solution.md" @@ -18,19 +18,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c int main() { int a[15] = {-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 2, 2, 2, 2, 2}; @@ -68,7 +68,7 @@ int main() ### A -```cpp +```c int res = 0; void f(int dian, int hua, int jiu) @@ -94,7 +94,7 @@ int main(int argc, char **argv) ### B -```cpp +```c int main() { int ans = 0; @@ -127,7 +127,7 @@ int main() ### C -```cpp +```c int cnt; void dfs(int a, int b, int sum, int u, int flag) diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/9.\350\277\267\345\256\253/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/9.\350\277\267\345\256\253/solution.md" index ab731c19cf54666928bbde49dd3b659f568919da..4a2938a2ee7cb36a948b20f8e99f17566d1826cf 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/9.\350\277\267\345\256\253/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/6.\350\223\235\346\241\245\346\235\257-\346\220\234\347\264\242/9.\350\277\267\345\256\253/solution.md" @@ -51,7 +51,7 @@ 下面的程序实现了这一功能,请你补全空白处: -```cpp +```c #include using namespace std; @@ -123,19 +123,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c dfs(tx, ty, step + 1); ``` @@ -143,18 +143,18 @@ int main() ### A -```cpp +```c dfs(tx, ty, step); ``` ### B -```cpp +```c dfs(tx + 1, ty + 1, step + 1); ``` ### C -```cpp +```c dfs(tx - 1, ty - 1, step + 1); ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/1.\346\265\213\350\257\225\346\254\241\346\225\260/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/1.\346\265\213\350\257\225\346\254\241\346\225\260/solution.md" index 02e78984873db4a9e4e58e748487bf884303b975..6ce728f1345242078bae4230e6fa248d3fa99d76 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/1.\346\265\213\350\257\225\346\254\241\346\225\260/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/1.\346\265\213\350\257\225\346\254\241\346\225\260/solution.md" @@ -18,7 +18,7 @@ x星球有很多高耸入云的高塔,刚好可以用来做耐摔测试。塔 下面的程序实现了这一功能,请你补全空白处的代码: -```cpp +```c #include using namespace std; int num[5][1010] = {0}; @@ -51,19 +51,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c res = min(res, max(dp(k - 1, i - 1), dp(k, n - i)) + 1); ``` ## 选项 @@ -71,18 +71,18 @@ res = min(res, max(dp(k - 1, i - 1), dp(k, n - i)) + 1); ### A -```cpp +```c res = min(res, max(dp(k, i - 1), dp(k, n - i)) + 1); ``` ### B -```cpp +```c res = min(res, max(dp(k - 1, i), dp(k, n - i)) + 1); ``` ### C -```cpp +```c res = min(res, max(dp(k - 1, i - n), dp(k, n - i)) + 1); ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/2.\345\234\260\345\256\253\345\217\226\345\256\235/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/2.\345\234\260\345\256\253\345\217\226\345\256\235/solution.md" index 5535fe652b3f0183ee838458812c0f91f8e03521..f579f82e8d03fe280cad8299ae25153fc06d80e6 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/2.\345\234\260\345\256\253\345\217\226\345\256\235/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/2.\345\234\260\345\256\253\345\217\226\345\256\235/solution.md" @@ -66,20 +66,20 @@ X 国王有一个地宫宝库,是 n×m 个格子的矩阵,每个格子放一 ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c const int N = 55, M = 15, mod = 1e9 + 7; int w[N][N]; @@ -136,7 +136,7 @@ int main() ### A -```cpp +```c int n, m, k; int data[55][55]; typedef long long LL; @@ -230,7 +230,7 @@ int main() ### B -```cpp +```c int n, m, k; int data[55][55]; @@ -284,7 +284,7 @@ int main() ### C -```cpp +```c const int N = 55; const int MOD = 1e9 + 7; int dp[N][N][13][14]; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/3.\350\243\205\351\245\260\347\217\240/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/3.\350\243\205\351\245\260\347\217\240/solution.md" index 2dcb18bf331426121d9f8260179a80d58338dfcf..c99ba6e1d746069abc4eff7f7d3ef67e850064b9 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/3.\350\243\205\351\245\260\347\217\240/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/3.\350\243\205\351\245\260\347\217\240/solution.md" @@ -68,20 +68,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 其他三个都不对 ``` @@ -89,7 +89,7 @@ using namespace std; ### A -```cpp +```c int main() { vector Hole(5); @@ -153,7 +153,7 @@ int main() ### B -```cpp +```c int Solution() { int n, sum = 0, L[5] = {0}, m, M, W[5][10] = {0}, le, P, res = 0; @@ -224,7 +224,7 @@ int main() ### C -```cpp +```c constexpr size_t MAXN = 55, MAXS = 305, MAXM = 1e4 + 5; int n[MAXN], cnt[5], Lv[MAXM], p[MAXM], w[MAXM][MAXN]; int dp[MAXM][MAXS]; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/4.\345\200\215\346\225\260\351\227\256\351\242\230/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/4.\345\200\215\346\225\260\351\227\256\351\242\230/solution.md" index 131b7f36895a53e5b296ad99d9610d8d5c67c184..4edb4a6d36473228bcf2a3289d444de034c8613c 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/4.\345\200\215\346\225\260\351\227\256\351\242\230/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/4.\345\200\215\346\225\260\351\227\256\351\242\230/solution.md" @@ -43,20 +43,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c #define ll long long using namespace std; @@ -111,7 +111,7 @@ int main() ### A -```cpp +```c #define FOR0(a, b) for (int i = a; i < b; ++i) #define FORE(a, b) for (int i = a; i <= b; ++i) typedef long long ll; @@ -153,7 +153,7 @@ int main() ### B -```cpp +```c int n, k, ans = 0; int temp[3], num[100005], vis[100005] = {0}; @@ -194,7 +194,7 @@ int main() ### C -```cpp +```c int N, k; int main() { diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/5.\347\273\204\345\220\210\346\225\260\351\227\256\351\242\230/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/5.\347\273\204\345\220\210\346\225\260\351\227\256\351\242\230/solution.md" index adcdde11917ac87d3897b940e44e1bf07e1dd778..ab9bb5298d0e61dd23f126f38cf30abbec764135 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/5.\347\273\204\345\220\210\346\225\260\351\227\256\351\242\230/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/5.\347\273\204\345\220\210\346\225\260\351\227\256\351\242\230/solution.md" @@ -76,19 +76,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c 其他三项都是错的 ``` @@ -96,7 +96,7 @@ ### A -```cpp +```c const int Mod = 1e9 + 7; int c[2010][2010]; int main() @@ -128,7 +128,7 @@ int main() ### B -```cpp +```c #define modk(x) (((x) >= k) ? ((x)-k) : (x)) const int maxn = 2005; int c[maxn][maxn], n, m, k, T; @@ -181,7 +181,7 @@ int main() ### C -```cpp +```c const int Mod = 1e9 + 7; const int inv_2 = 5e8 + 4; diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/6.\347\263\226\346\236\234/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/6.\347\263\226\346\236\234/solution.md" index 3f8182d9f43654927cafabae723ca6c33a43d618..7de081748ea435ff9e67f95f1a0fa72786c56ff8 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/6.\347\263\226\346\236\234/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/6.\347\263\226\346\236\234/solution.md" @@ -45,20 +45,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c const int N = 105, M = (1 << 20) + 10; int n, m, k, x, a[N], dp[M]; @@ -104,7 +104,7 @@ int main() ### A -```cpp +```c int n, m, k; int dp[1 << 20]; vector a; @@ -149,7 +149,7 @@ int main() ### B -```cpp +```c const int maxn = (1 << 20) + 52; const int inf = 9; int a[505], n, m, k, dp[2][maxn]; @@ -204,7 +204,7 @@ int main() ### C -```cpp +```c int dp[1 << 20]; int ST[100]; int main() diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/7.\347\237\251\351\230\265/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/7.\347\237\251\351\230\265/solution.md" index 62ae1782abf458e2cf12d71b94db045cf48f1875..bcfdb5eacbc6dd6ab4a21ff0b143a26cf4711ef7 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/7.\347\237\251\351\230\265/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/7.\347\237\251\351\230\265/solution.md" @@ -8,7 +8,7 @@ 以下程序实现了这一功能,请你补全空白处内容: -```cpp +```c #include int DP[1011][1011]; int main() @@ -36,19 +36,19 @@ int main() ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c DP[i][j] = (DP[i - 1][j] + DP[i][j - 1]) % 2020 ``` @@ -56,18 +56,18 @@ DP[i][j] = (DP[i - 1][j] + DP[i][j - 1]) % 2020 ### A -```cpp +```c DP[i][j] = (DP[i - 1][j + 1] + DP[i - 1][j + 1]) % 2020 ``` ### B -```cpp +```c DP[i][j] = (DP[i][j] + DP[i][j - 1]) % 2020 ``` ### C -```cpp +```c DP[i][j] = (DP[i - 1][j] + DP[i][j]) % 2020 ``` diff --git "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/8.\345\236\222\351\252\260\345\255\220/solution.md" "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/8.\345\236\222\351\252\260\345\255\220/solution.md" index bd000e4344d3539d38cdc31203172c91853c48f8..05056e158613c6aaa27869c221ac2c9527d009a4 100644 --- "a/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/8.\345\236\222\351\252\260\345\255\220/solution.md" +++ "b/data/1.\347\256\227\346\263\225\345\210\235\351\230\266/7.\350\223\235\346\241\245\346\235\257-\345\212\250\346\200\201\350\247\204\345\210\222/8.\345\236\222\351\252\260\345\255\220/solution.md" @@ -66,20 +66,20 @@ CPU消耗 < 2000ms ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c #define MOD 1000000007 using namespace std; @@ -163,7 +163,7 @@ int main() ### A -```cpp +```c #define MOD 1000000007 typedef long long LL; @@ -285,7 +285,7 @@ int main() ### B -```cpp +```c #define MOD 1000000007 typedef long long LL; @@ -364,7 +364,7 @@ int main() ### C -```cpp +```c #define MOD 1000000007 int op[7]; diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/1.59-\350\236\272\346\227\213\347\237\251\351\230\265 II/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/1.59-\350\236\272\346\227\213\347\237\251\351\230\265 II/solution.md" index aed89aa534a8625a70b9f5cee49beaf019c71d98..c72cd91a641e9181a54fec2c613aec5fe469f96f 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/1.59-\350\236\272\346\227\213\347\237\251\351\230\265 II/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/1.59-\350\236\272\346\227\213\347\237\251\351\230\265 II/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -34,7 +34,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -65,7 +65,7 @@ public: ### A -```cpp +```c class Solution { @@ -106,7 +106,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -138,7 +138,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/10.48-\346\227\213\350\275\254\345\233\276\345\203\217/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/10.48-\346\227\213\350\275\254\345\233\276\345\203\217/solution.md" index 4eaf5152fd360b06ea7833a7d6eee3aecd2f42af..f00b6670c0b87493a889fcbbffbf9619087f502e 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/10.48-\346\227\213\350\275\254\345\233\276\345\203\217/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/10.48-\346\227\213\350\275\254\345\233\276\345\203\217/solution.md" @@ -7,19 +7,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -48,7 +48,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -73,7 +73,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -101,7 +101,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/11.1-\344\270\244\346\225\260\344\271\213\345\222\214/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/11.1-\344\270\244\346\225\260\344\271\213\345\222\214/solution.md" index 67d5167db51b9131bdd470f9c939f22e14d2d695..8ada0bc5d82e49d11c180a68baa29835fe33ad15 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/11.1-\344\270\244\346\225\260\344\271\213\345\222\214/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/11.1-\344\270\244\346\225\260\344\271\213\345\222\214/solution.md" @@ -7,7 +7,7 @@ ### before -```cpp +```c #include #include #include @@ -17,7 +17,7 @@ using namespace std; ### after -```cpp +```c int main() { Solution test; @@ -35,7 +35,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -65,7 +65,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -93,7 +93,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -121,7 +121,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/12.54-\350\236\272\346\227\213\347\237\251\351\230\265/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/12.54-\350\236\272\346\227\213\347\237\251\351\230\265/solution.md" index ae376ff9b92ed15bc246ea24b6dd61e940dfe6f6..48b60f681e8c78fe6d25770dc980d5e7c1114fe2 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/12.54-\350\236\272\346\227\213\347\237\251\351\230\265/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/12.54-\350\236\272\346\227\213\347\237\251\351\230\265/solution.md" @@ -7,20 +7,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -77,7 +77,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -134,7 +134,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -169,7 +169,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/13.80-\345\210\240\351\231\244\346\234\211\345\272\217\346\225\260\347\273\204\344\270\255\347\232\204\351\207\215\345\244\215\351\241\271 II/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/13.80-\345\210\240\351\231\244\346\234\211\345\272\217\346\225\260\347\273\204\344\270\255\347\232\204\351\207\215\345\244\215\351\241\271 II/solution.md" index aafe7308db3c6d81b2452e5f1fc74aae0fb003ca..e9ed50bc3b08bc29900206b51ba0ce2a88135d4f 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/13.80-\345\210\240\351\231\244\346\234\211\345\272\217\346\225\260\347\273\204\344\270\255\347\232\204\351\207\215\345\244\215\351\241\271 II/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/13.80-\345\210\240\351\231\244\346\234\211\345\272\217\346\225\260\347\273\204\344\270\255\347\232\204\351\207\215\345\244\215\351\241\271 II/solution.md" @@ -34,14 +34,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -58,7 +58,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -86,7 +86,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -114,7 +114,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -139,7 +139,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/14.56-\345\220\210\345\271\266\345\214\272\351\227\264/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/14.56-\345\220\210\345\271\266\345\214\272\351\227\264/solution.md" index ea1167feb0c0f9f7c28a8484e4e38483c64fbc12..d2f2137cb884af5e4e1ef71c1c7ec8e67a210b73 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/14.56-\345\220\210\345\271\266\345\214\272\351\227\264/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/14.56-\345\220\210\345\271\266\345\214\272\351\227\264/solution.md" @@ -7,20 +7,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -57,7 +57,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -80,7 +80,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -107,7 +107,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/15.73-\347\237\251\351\230\265\347\275\256\351\233\266/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/15.73-\347\237\251\351\230\265\347\275\256\351\233\266/solution.md" index 9d3173ba3543e51967b1a56dec1a28e0de981950..ae3713b5c4d01564f3485ec90b0c79384f93e574 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/15.73-\347\237\251\351\230\265\347\275\256\351\233\266/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/15.73-\347\237\251\351\230\265\347\275\256\351\233\266/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -34,7 +34,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -78,7 +78,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -149,7 +149,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -195,7 +195,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/16.74-\346\220\234\347\264\242\344\272\214\347\273\264\347\237\251\351\230\265/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/16.74-\346\220\234\347\264\242\344\272\214\347\273\264\347\237\251\351\230\265/solution.md" index 811e3090677647aa112c606bd33e0dd821455145..790fa727a101f62c8e5dc2723e58aac4e62d7656 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/16.74-\346\220\234\347\264\242\344\272\214\347\273\264\347\237\251\351\230\265/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/16.74-\346\220\234\347\264\242\344\272\214\347\273\264\347\237\251\351\230\265/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -33,7 +33,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -73,7 +73,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -126,7 +126,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -158,7 +158,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/17.35-\346\220\234\347\264\242\346\217\222\345\205\245\344\275\215\347\275\256/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/17.35-\346\220\234\347\264\242\346\217\222\345\205\245\344\275\215\347\275\256/solution.md" index 3c0ded7072be2e8755d1129a35039f7ee08e4080..c679552dc8c60de40bc4b37b80c04fd4df99ecbc 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/17.35-\346\220\234\347\264\242\346\217\222\345\205\245\344\275\215\347\275\256/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/17.35-\346\220\234\347\264\242\346\217\222\345\205\245\344\275\215\347\275\256/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -31,7 +31,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -59,7 +59,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -86,7 +86,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -107,7 +107,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/2.81-\346\220\234\347\264\242\346\227\213\350\275\254\346\216\222\345\272\217\346\225\260\347\273\204 II/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/2.81-\346\220\234\347\264\242\346\227\213\350\275\254\346\216\222\345\272\217\346\225\260\347\273\204 II/solution.md" index 37e7c169c340c01849ad1e67555a8049cbb0b4cb..0a93b2ce1f76cf2d4158b05a22732016e3696580 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/2.81-\346\220\234\347\264\242\346\227\213\350\275\254\346\216\222\345\272\217\346\225\260\347\273\204 II/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/2.81-\346\220\234\347\264\242\346\227\213\350\275\254\346\216\222\345\272\217\346\225\260\347\273\204 II/solution.md" @@ -36,14 +36,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -58,7 +58,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -113,7 +113,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -161,7 +161,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -229,7 +229,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/3.18-\345\233\233\346\225\260\344\271\213\345\222\214/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/3.18-\345\233\233\346\225\260\344\271\213\345\222\214/solution.md" index 76d2949dd407514ac126d86da898b667e0eb6530..54919c06c8b61f7b2618c10b7b0b5b162f3c7835 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/3.18-\345\233\233\346\225\260\344\271\213\345\222\214/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/3.18-\345\233\233\346\225\260\344\271\213\345\222\214/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -40,7 +40,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -91,7 +91,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -149,7 +149,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -195,7 +195,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/4.57-\346\217\222\345\205\245\345\214\272\351\227\264/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/4.57-\346\217\222\345\205\245\345\214\272\351\227\264/solution.md" index e87d5d5245d7180057080fbce0ba46d384bfa21e..566cfca30477091c46131e1dba4e5400f48371e3 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/4.57-\346\217\222\345\205\245\345\214\272\351\227\264/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/4.57-\346\217\222\345\205\245\345\214\272\351\227\264/solution.md" @@ -29,20 +29,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -69,7 +69,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -206,7 +206,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -245,7 +245,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/5.4-\345\257\273\346\211\276\344\270\244\344\270\252\346\255\243\345\272\217\346\225\260\347\273\204\347\232\204\344\270\255\344\275\215\346\225\260/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/5.4-\345\257\273\346\211\276\344\270\244\344\270\252\346\255\243\345\272\217\346\225\260\347\273\204\347\232\204\344\270\255\344\275\215\346\225\260/solution.md" index b173a23e14e552f292b08dce5b798f7cbc09cd62..86be1b3437a5eb12efdc9e82345ba6381a0774af 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/5.4-\345\257\273\346\211\276\344\270\244\344\270\252\346\255\243\345\272\217\346\225\260\347\273\204\347\232\204\344\270\255\344\275\215\346\225\260/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/5.4-\345\257\273\346\211\276\344\270\244\344\270\252\346\255\243\345\272\217\346\225\260\347\273\204\347\232\204\344\270\255\344\275\215\346\225\260/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution test; @@ -36,7 +36,7 @@ int main() ## 答案 -```cpp +```c class Solution { @@ -96,7 +96,7 @@ public: ### A -```cpp +```c class Solution { int len1; @@ -133,7 +133,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -153,7 +153,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/6.78-\345\255\220\351\233\206/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/6.78-\345\255\220\351\233\206/solution.md" index 5b46b6795c19424d4bac6d558af8994398101d49..c8a20f03c81efbb71ab9f168f4291cfdf185cea0 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/6.78-\345\255\220\351\233\206/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/6.78-\345\255\220\351\233\206/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -33,7 +33,7 @@ int main() ## 答案 -```cpp +```c class Solution { private: @@ -66,7 +66,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -96,7 +96,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -127,7 +127,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/7.33-\346\220\234\347\264\242\346\227\213\350\275\254\346\216\222\345\272\217\346\225\260\347\273\204/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/7.33-\346\220\234\347\264\242\346\227\213\350\275\254\346\216\222\345\272\217\346\225\260\347\273\204/solution.md" index 713ff1786e76c749c116315e518c1340b591e9f9..195ebf9b100b9417c7a270224024e16e0d30748a 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/7.33-\346\220\234\347\264\242\346\227\213\350\275\254\346\216\222\345\272\217\346\225\260\347\273\204/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/7.33-\346\220\234\347\264\242\346\227\213\350\275\254\346\216\222\345\272\217\346\225\260\347\273\204/solution.md" @@ -32,14 +32,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -56,7 +56,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -93,7 +93,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -138,7 +138,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -165,7 +165,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/8.15-\344\270\211\346\225\260\344\271\213\345\222\214/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/8.15-\344\270\211\346\225\260\344\271\213\345\222\214/solution.md" index 67615fd94e02489d4d4c287ddaece260d60cf34c..bde792db8f94d1a0c6dd53a82273dd180ea13efa 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/8.15-\344\270\211\346\225\260\344\271\213\345\222\214/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/8.15-\344\270\211\346\225\260\344\271\213\345\222\214/solution.md" @@ -7,7 +7,7 @@ ### before -```cpp +```c #include #include #include @@ -17,7 +17,7 @@ using namespace std; ### after -```cpp +```c int main() { Solution sol; @@ -40,7 +40,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -81,7 +81,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -134,7 +134,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -176,7 +176,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/9.34-\345\234\250\346\216\222\345\272\217\346\225\260\347\273\204\344\270\255\346\237\245\346\211\276\345\205\203\347\264\240\347\232\204\347\254\254\344\270\200\344\270\252\345\222\214\346\234\200\345\220\216\344\270\200\344\270\252\344\275\215\347\275\256/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/9.34-\345\234\250\346\216\222\345\272\217\346\225\260\347\273\204\344\270\255\346\237\245\346\211\276\345\205\203\347\264\240\347\232\204\347\254\254\344\270\200\344\270\252\345\222\214\346\234\200\345\220\216\344\270\200\344\270\252\344\275\215\347\275\256/solution.md" index 91de81b5e0111bf3d3b1fa7bc6d05a5b00026ff5..fb31cd8e071d1a9fbcfa55f28e6d53786c59fbd5 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/9.34-\345\234\250\346\216\222\345\272\217\346\225\260\347\273\204\344\270\255\346\237\245\346\211\276\345\205\203\347\264\240\347\232\204\347\254\254\344\270\200\344\270\252\345\222\214\346\234\200\345\220\216\344\270\200\344\270\252\344\275\215\347\275\256/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/1.leetcode-\346\225\260\347\273\204/9.34-\345\234\250\346\216\222\345\272\217\346\225\260\347\273\204\344\270\255\346\237\245\346\211\276\345\205\203\347\264\240\347\232\204\347\254\254\344\270\200\344\270\252\345\222\214\346\234\200\345\220\216\344\270\200\344\270\252\344\275\215\347\275\256/solution.md" @@ -27,14 +27,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -52,7 +52,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -123,7 +123,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -179,7 +179,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -247,7 +247,7 @@ private: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/1.82-\345\210\240\351\231\244\346\216\222\345\272\217\351\223\276\350\241\250\344\270\255\347\232\204\351\207\215\345\244\215\345\205\203\347\264\240 II/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/1.82-\345\210\240\351\231\244\346\216\222\345\272\217\351\223\276\350\241\250\344\270\255\347\232\204\351\207\215\345\244\215\345\205\203\347\264\240 II/solution.md" index d567d85213d75c3776dfbcc903221ab2d9e7766e..489a796b5dd75a25651f4960a574e1539f9e642b 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/1.82-\345\210\240\351\231\244\346\216\222\345\272\217\351\223\276\350\241\250\344\270\255\347\232\204\351\207\215\345\244\215\345\205\203\347\264\240 II/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/1.82-\345\210\240\351\231\244\346\216\222\345\272\217\351\223\276\350\241\250\344\270\255\347\232\204\351\207\215\345\244\215\345\205\203\347\264\240 II/solution.md" @@ -7,7 +7,7 @@ ### before -```cpp +```c #include using namespace std; @@ -21,13 +21,13 @@ struct ListNode ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -62,7 +62,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -87,7 +87,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -128,7 +128,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/10.21-\345\220\210\345\271\266\344\270\244\344\270\252\346\234\211\345\272\217\351\223\276\350\241\250/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/10.21-\345\220\210\345\271\266\344\270\244\344\270\252\346\234\211\345\272\217\351\223\276\350\241\250/solution.md" index 664ebf01a68d4632ca90d8eea85232aa20b52c90..65b9d98bad9817809914a94ce2f862b2f0c87b62 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/10.21-\345\220\210\345\271\266\344\270\244\344\270\252\346\234\211\345\272\217\351\223\276\350\241\250/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/10.21-\345\220\210\345\271\266\344\270\244\344\270\252\346\234\211\345\272\217\351\223\276\350\241\250/solution.md" @@ -7,7 +7,7 @@ ### before -```cpp +```c #include using namespace std; @@ -23,7 +23,7 @@ struct ListNode ### after -```cpp +```c int main() { Solution sol; @@ -63,7 +63,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -91,7 +91,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -143,7 +143,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -189,7 +189,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/2.19-\345\210\240\351\231\244\351\223\276\350\241\250\347\232\204\345\200\222\346\225\260\347\254\254 N \344\270\252\347\273\223\347\202\271/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/2.19-\345\210\240\351\231\244\351\223\276\350\241\250\347\232\204\345\200\222\346\225\260\347\254\254 N \344\270\252\347\273\223\347\202\271/solution.md" index c74fa5400946dc3161502c1d834a2b29cd3b7baa..567c2038b21afa6a0251befdd78d7e4f814aeea7 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/2.19-\345\210\240\351\231\244\351\223\276\350\241\250\347\232\204\345\200\222\346\225\260\347\254\254 N \344\270\252\347\273\223\347\202\271/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/2.19-\345\210\240\351\231\244\351\223\276\350\241\250\347\232\204\345\200\222\346\225\260\347\254\254 N \344\270\252\347\273\223\347\202\271/solution.md" @@ -7,7 +7,7 @@ ### before -```cpp +```c #include using namespace std; @@ -23,7 +23,7 @@ struct ListNode ### after -```cpp +```c int main() { Solution sol; @@ -59,7 +59,7 @@ int main() ## 答案 -```cpp +```c class Solution { @@ -101,7 +101,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -137,7 +137,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -166,7 +166,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/3.83-\345\210\240\351\231\244\346\216\222\345\272\217\351\223\276\350\241\250\344\270\255\347\232\204\351\207\215\345\244\215\345\205\203\347\264\240/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/3.83-\345\210\240\351\231\244\346\216\222\345\272\217\351\223\276\350\241\250\344\270\255\347\232\204\351\207\215\345\244\215\345\205\203\347\264\240/solution.md" index d3dcfc2d52c2d3167ec2646b2980584143a890e6..565335b17304d1a779a8e2f7febf5b15bccff20c 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/3.83-\345\210\240\351\231\244\346\216\222\345\272\217\351\223\276\350\241\250\344\270\255\347\232\204\351\207\215\345\244\215\345\205\203\347\264\240/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/3.83-\345\210\240\351\231\244\346\216\222\345\272\217\351\223\276\350\241\250\344\270\255\347\232\204\351\207\215\345\244\215\345\205\203\347\264\240/solution.md" @@ -7,7 +7,7 @@ ### before -```cpp +```c #include using namespace std; @@ -21,13 +21,13 @@ struct ListNode ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -42,12 +42,13 @@ public: } }; ``` + ## 选项 ### A -```cpp +```c class Solution { public: @@ -82,7 +83,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -106,7 +107,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/4.25-K \344\270\252\344\270\200\347\273\204\347\277\273\350\275\254\351\223\276\350\241\250/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/4.25-K \344\270\252\344\270\200\347\273\204\347\277\273\350\275\254\351\223\276\350\241\250/solution.md" index 072ab3a68d8e21f482aaa2ef5058db3209960f9b..db3d8e874efc8462753632b16e7f9b6290d5fd92 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/4.25-K \344\270\252\344\270\200\347\273\204\347\277\273\350\275\254\351\223\276\350\241\250/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/4.25-K \344\270\252\344\270\200\347\273\204\347\277\273\350\275\254\351\223\276\350\241\250/solution.md" @@ -7,7 +7,7 @@ ### before -```cpp +```c struct ListNode { int val; @@ -20,13 +20,13 @@ struct ListNode ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -98,7 +98,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -160,7 +160,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -203,7 +203,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/5.86-\345\210\206\351\232\224\351\223\276\350\241\250/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/5.86-\345\210\206\351\232\224\351\223\276\350\241\250/solution.md" index 32e95f9f010f0bea145f551608c53848755d4ba9..f2a20c119975ce1fde2f0707f3d860f3e7700aed 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/5.86-\345\210\206\351\232\224\351\223\276\350\241\250/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/5.86-\345\210\206\351\232\224\351\223\276\350\241\250/solution.md" @@ -7,7 +7,7 @@ ### before -```cpp +```c #include using namespace std; @@ -21,13 +21,13 @@ struct ListNode ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -74,7 +74,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -109,7 +109,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -142,7 +142,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/6.23-\345\220\210\345\271\266K\344\270\252\345\215\207\345\272\217\351\223\276\350\241\250/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/6.23-\345\220\210\345\271\266K\344\270\252\345\215\207\345\272\217\351\223\276\350\241\250/solution.md" index 0dfca83441ce1303a3775c0a53e1f2b02bcf4975..0f33caa97a7bb29c1322e9365975b7cff0c3f9f3 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/6.23-\345\220\210\345\271\266K\344\270\252\345\215\207\345\272\217\351\223\276\350\241\250/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/6.23-\345\220\210\345\271\266K\344\270\252\345\215\207\345\272\217\351\223\276\350\241\250/solution.md" @@ -7,7 +7,7 @@ ### before -```cpp +```c #include using namespace std; @@ -23,7 +23,7 @@ struct ListNode ### after -```cpp +```c int main() { Solution sol; @@ -72,7 +72,7 @@ int main() ## 答案 -```cpp +```c struct cmp { bool operator()(ListNode *a, ListNode *b) @@ -115,7 +115,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -167,7 +167,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -213,7 +213,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/7.92-\345\217\215\350\275\254\351\223\276\350\241\250 II/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/7.92-\345\217\215\350\275\254\351\223\276\350\241\250 II/solution.md" index bb8ade449d6e61cc31b3df71500cbcc43032470d..77ca7a94ae09d8da9eca662fd0c7a26a2c217781 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/7.92-\345\217\215\350\275\254\351\223\276\350\241\250 II/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/7.92-\345\217\215\350\275\254\351\223\276\350\241\250 II/solution.md" @@ -7,7 +7,7 @@ ### before -```cpp +```c #include using namespace std; @@ -21,13 +21,13 @@ struct ListNode ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -54,7 +54,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -97,7 +97,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -136,7 +136,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/8.2-\344\270\244\346\225\260\347\233\270\345\212\240/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/8.2-\344\270\244\346\225\260\347\233\270\345\212\240/solution.md" index a2956813c482489c7c0e06fcefa8e6b6e6ad7d75..a031aa09e75e9ae3fb3493ff454cdc17d730560c 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/8.2-\344\270\244\346\225\260\347\233\270\345\212\240/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/8.2-\344\270\244\346\225\260\347\233\270\345\212\240/solution.md" @@ -7,7 +7,7 @@ ### before -```cpp +```c #include #include #include @@ -26,7 +26,7 @@ struct ListNode ### after -```cpp +```c int main() { @@ -67,7 +67,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -110,7 +110,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -155,7 +155,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -208,7 +208,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/9.24-\344\270\244\344\270\244\344\272\244\346\215\242\351\223\276\350\241\250\344\270\255\347\232\204\350\212\202\347\202\271/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/9.24-\344\270\244\344\270\244\344\272\244\346\215\242\351\223\276\350\241\250\344\270\255\347\232\204\350\212\202\347\202\271/solution.md" index 882b60400412ec36f70875649bfa381a58bb7bde..680f26718c94df2bd294c9a3a9b38a4f37c9d1c9 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/9.24-\344\270\244\344\270\244\344\272\244\346\215\242\351\223\276\350\241\250\344\270\255\347\232\204\350\212\202\347\202\271/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/2.leetcode-\351\223\276\350\241\250/9.24-\344\270\244\344\270\244\344\272\244\346\215\242\351\223\276\350\241\250\344\270\255\347\232\204\350\212\202\347\202\271/solution.md" @@ -7,7 +7,7 @@ ### before -```cpp +```c #include using namespace std; @@ -23,13 +23,13 @@ struct ListNode ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -63,7 +63,7 @@ public: ### A -```cpp +```c class Solution { @@ -99,7 +99,7 @@ public: ### B -```cpp +```c class Solution { public: ListNode* swapPairs(ListNode* head) { @@ -116,7 +116,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/1.58-\346\234\200\345\220\216\344\270\200\344\270\252\345\215\225\350\257\215\347\232\204\351\225\277\345\272\246/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/1.58-\346\234\200\345\220\216\344\270\200\344\270\252\345\215\225\350\257\215\347\232\204\351\225\277\345\272\246/solution.md" index f9aa93f02d1d7a0af87177427defc28d16b50f90..6b7acba9271751a6aa565a9c7b9e17ded890e756 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/1.58-\346\234\200\345\220\216\344\270\200\344\270\252\345\215\225\350\257\215\347\232\204\351\225\277\345\272\246/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/1.58-\346\234\200\345\220\216\344\270\200\344\270\252\345\215\225\350\257\215\347\232\204\351\225\277\345\272\246/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -29,7 +29,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -54,7 +54,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -72,7 +72,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -100,7 +100,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/10.28-\345\256\236\347\216\260 strStr()/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/10.28-\345\256\236\347\216\260 strStr()/solution.md" index f73a887bb5161df365637c3045ccdd260cdba8fc..c4ad2cfcfdbb9a15a195918deadd61388f81111e 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/10.28-\345\256\236\347\216\260 strStr()/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/10.28-\345\256\236\347\216\260 strStr()/solution.md" @@ -29,14 +29,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -49,7 +49,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -64,7 +64,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -96,7 +96,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -154,7 +154,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/11.97-\344\272\244\351\224\231\345\255\227\347\254\246\344\270\262/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/11.97-\344\272\244\351\224\231\345\255\227\347\254\246\344\270\262/solution.md" index 97dfd6426ff881d5ef5468c391f0260ccb979e5c..fda1dcdd24e64850d66680f9cc858b537b05471b 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/11.97-\344\272\244\351\224\231\345\255\227\347\254\246\344\270\262/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/11.97-\344\272\244\351\224\231\345\255\227\347\254\246\344\270\262/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -30,7 +30,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -69,7 +69,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -108,7 +108,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -135,7 +135,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/2.93-\345\244\215\345\216\237 IP \345\234\260\345\235\200/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/2.93-\345\244\215\345\216\237 IP \345\234\260\345\235\200/solution.md" index 8517f8f0bc2f8e1efff628611c6acc6d78960c87..f504eada4d98e602eded42659c99796a0a46d0eb 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/2.93-\345\244\215\345\216\237 IP \345\234\260\345\235\200/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/2.93-\345\244\215\345\216\237 IP \345\234\260\345\235\200/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -29,7 +29,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -99,7 +99,7 @@ private: ### A -```cpp +```c class Solution { public: @@ -152,7 +152,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -193,7 +193,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/3.8-\345\255\227\347\254\246\344\270\262\350\275\254\346\215\242\346\225\264\346\225\260 (atoi)/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/3.8-\345\255\227\347\254\246\344\270\262\350\275\254\346\215\242\346\225\264\346\225\260 (atoi)/solution.md" index e539e3fef97940c889ca0a964958d9bc8309aa33..e75da076e5aea33eadeb747d9ac99b4404523fb7 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/3.8-\345\255\227\347\254\246\344\270\262\350\275\254\346\215\242\346\225\264\346\225\260 (atoi)/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/3.8-\345\255\227\347\254\246\344\270\262\350\275\254\346\215\242\346\225\264\346\225\260 (atoi)/solution.md" @@ -115,14 +115,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -133,7 +133,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -176,7 +176,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -192,7 +192,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -241,7 +241,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/4.38-\345\244\226\350\247\202\346\225\260\345\210\227/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/4.38-\345\244\226\350\247\202\346\225\260\345\210\227/solution.md" index 38f2a2aaedea2557ba6c1a7c10291e05559dcb6d..f89ea82c40361e4f8e275007b7071c0296992a00 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/4.38-\345\244\226\350\247\202\346\225\260\345\210\227/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/4.38-\345\244\226\350\247\202\346\225\260\345\210\227/solution.md" @@ -71,14 +71,14 @@ countAndSay(4) = 读 "21" = 一 个 2 + 一 个 1 = "12" + "11" = "1211" ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { @@ -95,7 +95,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -124,7 +124,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -184,7 +184,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -247,7 +247,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/5.3-\346\227\240\351\207\215\345\244\215\345\255\227\347\254\246\347\232\204\346\234\200\351\225\277\345\255\220\344\270\262/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/5.3-\346\227\240\351\207\215\345\244\215\345\255\227\347\254\246\347\232\204\346\234\200\351\225\277\345\255\220\344\270\262/solution.md" index 5f361e1bea5da425394bee18c50c051686e8def2..2026577afe76698f489edf1cec8dcd57dc71ad0d 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/5.3-\346\227\240\351\207\215\345\244\215\345\255\227\347\254\246\347\232\204\346\234\200\351\225\277\345\255\220\344\270\262/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/5.3-\346\227\240\351\207\215\345\244\215\345\255\227\347\254\246\347\232\204\346\234\200\351\225\277\345\255\220\344\270\262/solution.md" @@ -8,14 +8,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution test; @@ -29,7 +29,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -66,7 +66,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -89,7 +89,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -117,7 +117,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/6.6-Z \345\255\227\345\275\242\345\217\230\346\215\242/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/6.6-Z \345\255\227\345\275\242\345\217\230\346\215\242/solution.md" index 24013169fe418d5542292d174c4513834e06f842..3f02635f817539c8534618b372fab61ce33fb3e2 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/6.6-Z \345\255\227\345\275\242\345\217\230\346\215\242/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/6.6-Z \345\255\227\345\275\242\345\217\230\346\215\242/solution.md" @@ -56,14 +56,14 @@ P I ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution test; @@ -80,7 +80,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -131,7 +131,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -161,7 +161,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -189,7 +189,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/7.14-\346\234\200\351\225\277\345\205\254\345\205\261\345\211\215\347\274\200/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/7.14-\346\234\200\351\225\277\345\205\254\345\205\261\345\211\215\347\274\200/solution.md" index a4a139f39868378b6e320ba3a37adb67cf2212f2..1d9f8b749d36eb55251298d0ca3fe71d352a2d08 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/7.14-\346\234\200\351\225\277\345\205\254\345\205\261\345\211\215\347\274\200/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/7.14-\346\234\200\351\225\277\345\205\254\345\205\261\345\211\215\347\274\200/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -28,7 +28,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -54,7 +54,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -91,7 +91,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -129,7 +129,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/8.43-\345\255\227\347\254\246\344\270\262\347\233\270\344\271\230/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/8.43-\345\255\227\347\254\246\344\270\262\347\233\270\344\271\230/solution.md" index 29569ea08f00c8124d84aac85357f0fa01c991d5..5f86cd11ffbd90caec31f0717547f547f3c7caad 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/8.43-\345\255\227\347\254\246\344\270\262\347\233\270\344\271\230/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/8.43-\345\255\227\347\254\246\344\270\262\347\233\270\344\271\230/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -30,7 +30,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -65,7 +65,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -98,7 +98,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -143,7 +143,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/9.65-\346\234\211\346\225\210\346\225\260\345\255\227/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/9.65-\346\234\211\346\225\210\346\225\260\345\255\227/solution.md" index e80571ec8bfe853c840eb061176dabb0d2a7db7e..8e2f710a15273f4224a617481448826c75c13d5f 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/9.65-\346\234\211\346\225\210\346\225\260\345\255\227/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/9.65-\346\234\211\346\225\210\346\225\260\345\255\227/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -28,7 +28,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -94,7 +94,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -156,7 +156,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -234,7 +234,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/1.227-\345\237\272\346\234\254\350\256\241\347\256\227\345\231\250 II/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/1.227-\345\237\272\346\234\254\350\256\241\347\256\227\345\231\250 II/solution.md" index 321789330a2137f70e286aae446495b38496c1f8..a4f6340e85b022252ad9e46f4b3736655aadd7a6 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/1.227-\345\237\272\346\234\254\350\256\241\347\256\227\345\231\250 II/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/1.227-\345\237\272\346\234\254\350\256\241\347\256\227\345\231\250 II/solution.md" @@ -49,14 +49,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -70,7 +70,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -145,7 +145,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -201,7 +201,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -270,7 +270,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/10.42-\346\216\245\351\233\250\346\260\264/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/10.42-\346\216\245\351\233\250\346\260\264/solution.md" index 3ecd80597a2d4c82283aaa55a296a051a907dc39..2a8cdef340a60226af3ebfc61eb64bb0630d5107 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/10.42-\346\216\245\351\233\250\346\260\264/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/10.42-\346\216\245\351\233\250\346\260\264/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -30,7 +30,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -67,7 +67,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -110,7 +110,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -136,7 +136,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/2.71-\347\256\200\345\214\226\350\267\257\345\276\204/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/2.71-\347\256\200\345\214\226\350\267\257\345\276\204/solution.md" index cd75595eac73c6644227b7545ba588e26847744b..71a0f51468f5e247c275a3eabe5c5b88bea1a302 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/2.71-\347\256\200\345\214\226\350\267\257\345\276\204/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/2.71-\347\256\200\345\214\226\350\267\257\345\276\204/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -29,7 +29,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -115,7 +115,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -153,7 +153,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -199,7 +199,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/3.20-\346\234\211\346\225\210\347\232\204\346\213\254\345\217\267/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/3.20-\346\234\211\346\225\210\347\232\204\346\213\254\345\217\267/solution.md" index 7dd3dd8e4e2ca453c40d4d9c2a023e3ca715a7e8..a6dfa2614ade51660decd6242346a19600844cb5 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/3.20-\346\234\211\346\225\210\347\232\204\346\213\254\345\217\267/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/3.20-\346\234\211\346\225\210\347\232\204\346\213\254\345\217\267/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -29,7 +29,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -71,7 +71,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -103,7 +103,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -159,7 +159,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/4.224-\345\237\272\346\234\254\350\256\241\347\256\227\345\231\250/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/4.224-\345\237\272\346\234\254\350\256\241\347\256\227\345\231\250/solution.md" index 9d93fd3559d8a972cea4025e07aab947eb95e20b..a59d435ba42c2b8de135927c9691d9ca06ec3f82 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/4.224-\345\237\272\346\234\254\350\256\241\347\256\227\345\231\250/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/4.224-\345\237\272\346\234\254\350\256\241\347\256\227\345\231\250/solution.md" @@ -41,14 +41,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -62,7 +62,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -179,7 +179,7 @@ private: ### A -```cpp +```c class Solution { public: @@ -262,7 +262,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -372,7 +372,7 @@ private: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/5.32-\346\234\200\351\225\277\346\234\211\346\225\210\346\213\254\345\217\267/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/5.32-\346\234\200\351\225\277\346\234\211\346\225\210\346\213\254\345\217\267/solution.md" index 8b437f749c1255b85377ee5d29344979d11fa6fb..d0e098948f5a32ff5613efece7905fe7ad0e4965 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/5.32-\346\234\200\351\225\277\346\234\211\346\225\210\346\213\254\345\217\267/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/5.32-\346\234\200\351\225\277\346\234\211\346\225\210\346\213\254\345\217\267/solution.md" @@ -7,19 +7,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -58,7 +58,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -100,7 +100,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -136,7 +136,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/6.155-\346\234\200\345\260\217\346\240\210/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/6.155-\346\234\200\345\260\217\346\240\210/solution.md" index eb91794eef06ec7cc85be64683b79c4abc6feae1..6f39e2408a00ec2fd41f23d14dcbcdd05c78b466 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/6.155-\346\234\200\345\260\217\346\240\210/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/6.155-\346\234\200\345\260\217\346\240\210/solution.md" @@ -45,14 +45,14 @@ minStack.getMin(); --> 返回 -2. ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c /** * Your MinStack object will be instantiated and called as such: * MinStack obj = new MinStack(); @@ -65,7 +65,7 @@ using namespace std; ## 答案 -```cpp +```c 其他三个都是错的 ``` ## 选项 @@ -73,7 +73,7 @@ using namespace std; ### A -```cpp +```c class MinStack { public: @@ -134,7 +134,7 @@ public: ### B -```cpp +```c class MinStack { public: @@ -190,7 +190,7 @@ public: ### C -```cpp +```c class MinStack { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/7.218-\345\244\251\351\231\205\347\272\277\351\227\256\351\242\230/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/7.218-\345\244\251\351\231\205\347\272\277\351\227\256\351\242\230/solution.md" index c5ce6d810ec7872212ba90eccb0f1c28d9b4f95d..4255b6dbb9e72e3d64d8f8c537c043b72b239751 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/7.218-\345\244\251\351\231\205\347\272\277\351\227\256\351\242\230/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/7.218-\345\244\251\351\231\205\347\272\277\351\227\256\351\242\230/solution.md" @@ -49,19 +49,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -100,7 +100,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -141,7 +141,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -179,7 +179,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/8.84-\346\237\261\347\212\266\345\233\276\344\270\255\346\234\200\345\244\247\347\232\204\347\237\251\345\275\242/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/8.84-\346\237\261\347\212\266\345\233\276\344\270\255\346\234\200\345\244\247\347\232\204\347\237\251\345\275\242/solution.md" index 95e458ac7a2463ceb88cb9e2cd0927a636003823..8f92eda02fb0a689ee1300488443d7e956d24abd 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/8.84-\346\237\261\347\212\266\345\233\276\344\270\255\346\234\200\345\244\247\347\232\204\347\237\251\345\275\242/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/8.84-\346\237\261\347\212\266\345\233\276\344\270\255\346\234\200\345\244\247\347\232\204\347\237\251\345\275\242/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -28,7 +28,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -60,7 +60,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -92,7 +92,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -131,7 +131,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/9.150-\351\200\206\346\263\242\345\205\260\350\241\250\350\276\276\345\274\217\346\261\202\345\200\274/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/9.150-\351\200\206\346\263\242\345\205\260\350\241\250\350\276\276\345\274\217\346\261\202\345\200\274/solution.md" index 561d8f132339132311eef3e3b26f1da018c10d73..2ce502a21222e2603d6450084b6461e485bc1fcb 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/9.150-\351\200\206\346\263\242\345\205\260\350\241\250\350\276\276\345\274\217\346\261\202\345\200\274/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/4.leetcode-\346\240\210\344\270\216\351\230\237\345\210\227/9.150-\351\200\206\346\263\242\345\205\260\350\241\250\350\276\276\345\274\217\346\261\202\345\200\274/solution.md" @@ -79,20 +79,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -142,7 +142,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -192,7 +192,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -246,7 +246,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/1.493-\347\277\273\350\275\254\345\257\271/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/1.493-\347\277\273\350\275\254\345\257\271/solution.md" index c0c9d876c6a9dbca304de643b874bbb13089f30a..437b934496f2ce32cdab322b9c5695481c1f14b2 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/1.493-\347\277\273\350\275\254\345\257\271/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/1.493-\347\277\273\350\275\254\345\257\271/solution.md" @@ -31,14 +31,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -52,7 +52,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -118,7 +118,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -173,7 +173,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -227,7 +227,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/10.378-\346\234\211\345\272\217\347\237\251\351\230\265\344\270\255\347\254\254 K \345\260\217\347\232\204\345\205\203\347\264\240/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/10.378-\346\234\211\345\272\217\347\237\251\351\230\265\344\270\255\347\254\254 K \345\260\217\347\232\204\345\205\203\347\264\240/solution.md" index 390c3577c3746514caf204441b378b48b0b9432b..2baca13f9d6503bed4f462156ff79f8303fad28a 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/10.378-\346\234\211\345\272\217\347\237\251\351\230\265\344\270\255\347\254\254 K \345\260\217\347\232\204\345\205\203\347\264\240/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/10.378-\346\234\211\345\272\217\347\237\251\351\230\265\344\270\255\347\254\254 K \345\260\217\347\232\204\345\205\203\347\264\240/solution.md" @@ -39,20 +39,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -97,7 +97,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -133,7 +133,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -165,7 +165,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/2.324-\346\221\206\345\212\250\346\216\222\345\272\217 II/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/2.324-\346\221\206\345\212\250\346\216\222\345\272\217 II/solution.md" index ea3cb67f3ee74419c5f076c9626db371c464705d..abf2f77141b99941edb65687f9035a2425abda42 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/2.324-\346\221\206\345\212\250\346\216\222\345\272\217 II/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/2.324-\346\221\206\345\212\250\346\216\222\345\272\217 II/solution.md" @@ -41,7 +41,7 @@ ### before -```cpp +```c #include using namespace std; @@ -49,13 +49,13 @@ using namespace std; ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -81,7 +81,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -102,7 +102,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -135,7 +135,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/3.274-H \346\214\207\346\225\260/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/3.274-H \346\214\207\346\225\260/solution.md" index 98dbd1c68e986bc34350f0c7dd1c94c0222af725..b80eac332c6e7ff9e1a01900207a0f7907d8fbf7 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/3.274-H \346\214\207\346\225\260/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/3.274-H \346\214\207\346\225\260/solution.md" @@ -41,14 +41,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -62,7 +62,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -93,7 +93,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -116,7 +116,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -147,7 +147,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/4.347-\345\211\215 K \344\270\252\351\253\230\351\242\221\345\205\203\347\264\240/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/4.347-\345\211\215 K \344\270\252\351\253\230\351\242\221\345\205\203\347\264\240/solution.md" index b262c1eaa5380e4f51b13e4493281b05dde9b1f6..37748a232beda6224c73b73de1860c4d77d5b07c 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/4.347-\345\211\215 K \344\270\252\351\253\230\351\242\221\345\205\203\347\264\240/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/4.347-\345\211\215 K \344\270\252\351\253\230\351\242\221\345\205\203\347\264\240/solution.md" @@ -37,14 +37,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -60,7 +60,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -89,7 +89,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -131,7 +131,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -174,7 +174,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/5.354-\344\277\204\347\275\227\346\226\257\345\245\227\345\250\203\344\277\241\345\260\201\351\227\256\351\242\230/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/5.354-\344\277\204\347\275\227\346\226\257\345\245\227\345\250\203\344\277\241\345\260\201\351\227\256\351\242\230/solution.md" index cefe6f86cc73d9b4ab6c282025293638ffc72f37..7a70adc950eda4393b1e5db60410d97da45eadc4 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/5.354-\344\277\204\347\275\227\346\226\257\345\245\227\345\250\203\344\277\241\345\260\201\351\227\256\351\242\230/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/5.354-\344\277\204\347\275\227\346\226\257\345\245\227\345\250\203\344\277\241\345\260\201\351\227\256\351\242\230/solution.md" @@ -39,20 +39,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -99,7 +99,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -123,7 +123,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -192,7 +192,7 @@ public: ### C -```cpp +```c bool sortV(vector &a, vector &b) { if (a[0] == b[0]) diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/6.164-\346\234\200\345\244\247\351\227\264\350\267\235/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/6.164-\346\234\200\345\244\247\351\227\264\350\267\235/solution.md" index aada153228a509258d781f3c3ae2e51864df6a7d..8c1ee8d76fdb51614dac1edf065effeac39c8b2c 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/6.164-\346\234\200\345\244\247\351\227\264\350\267\235/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/6.164-\346\234\200\345\244\247\351\227\264\350\267\235/solution.md" @@ -29,14 +29,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -50,7 +50,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -74,7 +74,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -131,7 +131,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -173,7 +173,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/7.327-\345\214\272\351\227\264\345\222\214\347\232\204\344\270\252\346\225\260/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/7.327-\345\214\272\351\227\264\345\222\214\347\232\204\344\270\252\346\225\260/solution.md" index 22156a338c091d3c0ccb5e97c2b1c0c293a07ff2..7fdebb3cf653a9d8d37df609de8e3e6ac10c8df2 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/7.327-\345\214\272\351\227\264\345\222\214\347\232\204\344\270\252\346\225\260/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/7.327-\345\214\272\351\227\264\345\222\214\347\232\204\344\270\252\346\225\260/solution.md" @@ -37,14 +37,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -60,7 +60,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -121,7 +121,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -148,7 +148,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -175,7 +175,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/8.912-\346\216\222\345\272\217\346\225\260\347\273\204/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/8.912-\346\216\222\345\272\217\346\225\260\347\273\204/solution.md" index c397523bd31fab11a4ea2635da36f78655b8fad7..5392348a47535ccb3b38169b0a43a487db2420fd 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/8.912-\346\216\222\345\272\217\346\225\260\347\273\204/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/8.912-\346\216\222\345\272\217\346\225\260\347\273\204/solution.md" @@ -33,14 +33,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -55,7 +55,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -108,7 +108,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -135,7 +135,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -171,7 +171,7 @@ public: ### C -```cpp +```c class Solution { public: @@ -203,7 +203,7 @@ public: ### D -```cpp +```c class Solution { public: @@ -239,7 +239,7 @@ public: ### E -```cpp +```c class Solution { vector nums; @@ -297,7 +297,7 @@ public: ### F -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/9.315-\350\256\241\347\256\227\345\217\263\344\276\247\345\260\217\344\272\216\345\275\223\345\211\215\345\205\203\347\264\240\347\232\204\344\270\252\346\225\260/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/9.315-\350\256\241\347\256\227\345\217\263\344\276\247\345\260\217\344\272\216\345\275\223\345\211\215\345\205\203\347\264\240\347\232\204\344\270\252\346\225\260/solution.md" index c0681da38b5d885c9c0878192a1f6869975e9c03..88949787fbd79d5db788f392e58714be8103342d 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/9.315-\350\256\241\347\256\227\345\217\263\344\276\247\345\260\217\344\272\216\345\275\223\345\211\215\345\205\203\347\264\240\347\232\204\344\270\252\346\225\260/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/5.leetcode-\346\216\222\345\272\217\347\256\227\346\263\225/9.315-\350\256\241\347\256\227\345\217\263\344\276\247\345\260\217\344\272\216\345\275\223\345\211\215\345\205\203\347\264\240\347\232\204\344\270\252\346\225\260/solution.md" @@ -45,14 +45,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -67,7 +67,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -132,7 +132,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -192,7 +192,7 @@ public: ### B -```cpp +```c struct BSTNode { int val; @@ -251,7 +251,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/1.75-\351\242\234\350\211\262\345\210\206\347\261\273/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/1.75-\351\242\234\350\211\262\345\210\206\347\261\273/solution.md" index 5985add43cef8cdd91a0430d64564278349f8ebf..f8c28e6ddd65b659d3a4bc09f810ab044d0726fb 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/1.75-\351\242\234\350\211\262\345\210\206\347\261\273/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/1.75-\351\242\234\350\211\262\345\210\206\347\261\273/solution.md" @@ -7,7 +7,7 @@ ### before -```cpp +```c #include using namespace std; @@ -15,7 +15,7 @@ using namespace std; ### after -```cpp +```c int main() { Solution sol; @@ -31,7 +31,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -65,7 +65,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -89,7 +89,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -121,7 +121,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/10.16-\346\234\200\346\216\245\350\277\221\347\232\204\344\270\211\346\225\260\344\271\213\345\222\214/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/10.16-\346\234\200\346\216\245\350\277\221\347\232\204\344\270\211\346\225\260\344\271\213\345\222\214/solution.md" index 53ca6b4d1941512a5ac1e4a78feb939f8d95fcb3..c7c5f9cd5b00ac662a11ae1c5eb0a5067a4f39d3 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/10.16-\346\234\200\346\216\245\350\277\221\347\232\204\344\270\211\346\225\260\344\271\213\345\222\214/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/10.16-\346\234\200\346\216\245\350\277\221\347\232\204\344\270\211\346\225\260\344\271\213\345\222\214/solution.md" @@ -9,7 +9,7 @@ ### before -```cpp +```c #include using namespace std; @@ -17,7 +17,7 @@ using namespace std; ### after -```cpp +```c int main() { Solution sol; @@ -34,7 +34,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -78,7 +78,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -107,7 +107,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -140,7 +140,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/2.11-\347\233\233\346\234\200\345\244\232\346\260\264\347\232\204\345\256\271\345\231\250/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/2.11-\347\233\233\346\234\200\345\244\232\346\260\264\347\232\204\345\256\271\345\231\250/solution.md" index e5ddf881275f10c368a511a2368442c46b2213d4..de5a80e05f90a3b844f636e8bd6ed34dca95312b 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/2.11-\347\233\233\346\234\200\345\244\232\346\260\264\347\232\204\345\256\271\345\231\250/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/2.11-\347\233\233\346\234\200\345\244\232\346\260\264\347\232\204\345\256\271\345\231\250/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -31,7 +31,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -56,7 +56,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -82,7 +82,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -115,7 +115,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/3.31-\344\270\213\344\270\200\344\270\252\346\216\222\345\210\227/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/3.31-\344\270\213\344\270\200\344\270\252\346\216\222\345\210\227/solution.md" index 1806bad4cf944cee856f679e3e5be6bdc5c6a08c..fa03811f1374df6ea300fb6367d78ae1a5c32346 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/3.31-\344\270\213\344\270\200\344\270\252\346\216\222\345\210\227/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/3.31-\344\270\213\344\270\200\344\270\252\346\216\222\345\210\227/solution.md" @@ -7,19 +7,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -68,7 +68,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -99,7 +99,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -134,7 +134,7 @@ public: ### C -```cpp +```c void reverse(vector &nums, int begin, int end) { while (begin < end) diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/4.142-\347\216\257\345\275\242\351\223\276\350\241\250 II/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/4.142-\347\216\257\345\275\242\351\223\276\350\241\250 II/solution.md" index 18ac02e2dffaec3791e05fcfcfac33c103d7ffe4..d2e42b048fde729c3d4de79f6b3b7fcadb7136bf 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/4.142-\347\216\257\345\275\242\351\223\276\350\241\250 II/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/4.142-\347\216\257\345\275\242\351\223\276\350\241\250 II/solution.md" @@ -60,7 +60,7 @@ ### before -```cpp +```c #include using namespace std; @@ -74,13 +74,13 @@ struct ListNode ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -117,7 +117,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -140,7 +140,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -175,7 +175,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/5.141-\347\216\257\345\275\242\351\223\276\350\241\250/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/5.141-\347\216\257\345\275\242\351\223\276\350\241\250/solution.md" index 461614de69fb2c5d1fab1cfc258f1796ca14f973..4c01cad1e8f1aadaa76526c9d22f54d1dab98d2a 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/5.141-\347\216\257\345\275\242\351\223\276\350\241\250/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/5.141-\347\216\257\345\275\242\351\223\276\350\241\250/solution.md" @@ -57,7 +57,7 @@ ### before -```cpp +```c #include using namespace std; @@ -71,13 +71,13 @@ struct ListNode ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -103,7 +103,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -124,7 +124,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -154,7 +154,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/6.61-\346\227\213\350\275\254\351\223\276\350\241\250/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/6.61-\346\227\213\350\275\254\351\223\276\350\241\250/solution.md" index 9a39f2c764c556c48db2b47eb66da8f619be04e8..5440226b0a66885c896292c06f4a730f161fbb9b 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/6.61-\346\227\213\350\275\254\351\223\276\350\241\250/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/6.61-\346\227\213\350\275\254\351\223\276\350\241\250/solution.md" @@ -7,7 +7,7 @@ ### before -```cpp +```c #include using namespace std; @@ -21,13 +21,13 @@ struct ListNode ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -54,7 +54,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -88,7 +88,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -126,7 +126,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/7.26-\345\210\240\351\231\244\346\234\211\345\272\217\346\225\260\347\273\204\344\270\255\347\232\204\351\207\215\345\244\215\351\241\271/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/7.26-\345\210\240\351\231\244\346\234\211\345\272\217\346\225\260\347\273\204\344\270\255\347\232\204\351\207\215\345\244\215\351\241\271/solution.md" index 537d9f0985a6f1420cae1aecd833eb21cb364d84..1202344efd45c8656ffa272dffce8c10ad607032 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/7.26-\345\210\240\351\231\244\346\234\211\345\272\217\346\225\260\347\273\204\344\270\255\347\232\204\351\207\215\345\244\215\351\241\271/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/7.26-\345\210\240\351\231\244\346\234\211\345\272\217\346\225\260\347\273\204\344\270\255\347\232\204\351\207\215\345\244\215\351\241\271/solution.md" @@ -60,14 +60,14 @@ for (int i = 0; i < len; i++) { ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -88,7 +88,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -114,7 +114,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -143,7 +143,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -166,7 +166,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/8.27-\347\247\273\351\231\244\345\205\203\347\264\240/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/8.27-\347\247\273\351\231\244\345\205\203\347\264\240/solution.md" index 1b6a142c811ed7e8d4161df23136bb8510011d46..162319b80ac26022a098b0318a623b2cab0b0b86 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/8.27-\347\247\273\351\231\244\345\205\203\347\264\240/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/8.27-\347\247\273\351\231\244\345\205\203\347\264\240/solution.md" @@ -62,14 +62,14 @@ for (int i = 0; i < len; i++) { ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -83,7 +83,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -106,7 +106,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -128,7 +128,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -153,7 +153,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/9.88-\345\220\210\345\271\266\344\270\244\344\270\252\346\234\211\345\272\217\346\225\260\347\273\204/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/9.88-\345\220\210\345\271\266\344\270\244\344\270\252\346\234\211\345\272\217\346\225\260\347\273\204/solution.md" index 6a8db128e2b199ff1d64c293bcc6432227e601f1..35a85941d201e2f9d210aafc4bdc5b80c4b9afbd 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/9.88-\345\220\210\345\271\266\344\270\244\344\270\252\346\234\211\345\272\217\346\225\260\347\273\204/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/6.leetcode-\345\217\214\346\214\207\351\222\210/9.88-\345\220\210\345\271\266\344\270\244\344\270\252\346\234\211\345\272\217\346\225\260\347\273\204/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -32,7 +32,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -61,7 +61,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -94,7 +94,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -114,7 +114,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/1.95-\344\270\215\345\220\214\347\232\204\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221 II/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/1.95-\344\270\215\345\220\214\347\232\204\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221 II/solution.md" index caa0dc728caccca0a67c65ba5a06b5c3ca6f2231..6fff52e12e6b0d0ad4e0ddcf5d588e671082fcc5 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/1.95-\344\270\215\345\220\214\347\232\204\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221 II/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/1.95-\344\270\215\345\220\214\347\232\204\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221 II/solution.md" @@ -38,7 +38,7 @@ ### before -```cpp +```c #include using namespace std; @@ -55,13 +55,13 @@ struct TreeNode ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -106,7 +106,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -154,7 +154,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -197,7 +197,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/10.103-\344\272\214\345\217\211\346\240\221\347\232\204\351\224\257\351\275\277\345\275\242\345\261\202\345\272\217\351\201\215\345\216\206/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/10.103-\344\272\214\345\217\211\346\240\221\347\232\204\351\224\257\351\275\277\345\275\242\345\261\202\345\272\217\351\201\215\345\216\206/solution.md" index 3040aee18c6b818cc075f70185344f8e0c298c6f..868a1643274c94f4ffaf37851d00cac71025fb3e 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/10.103-\344\272\214\345\217\211\346\240\221\347\232\204\351\224\257\351\275\277\345\275\242\345\261\202\345\272\217\351\201\215\345\216\206/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/10.103-\344\272\214\345\217\211\346\240\221\347\232\204\351\224\257\351\275\277\345\275\242\345\261\202\345\272\217\351\201\215\345\216\206/solution.md" @@ -29,7 +29,7 @@ ### before -```cpp +```c #include using namespace std; @@ -46,13 +46,13 @@ struct TreeNode ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -109,7 +109,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -155,7 +155,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -205,7 +205,7 @@ public: ### C -```cpp +```c class Solution { public: @@ -240,7 +240,7 @@ public: ``` ### D -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/2.100-\347\233\270\345\220\214\347\232\204\346\240\221/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/2.100-\347\233\270\345\220\214\347\232\204\346\240\221/solution.md" index ed8aa9ae9254438e5de90b81448ea3a8d8bd6b39..88ab8611f478aea6ecead2450b8fd17109acb2c6 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/2.100-\347\233\270\345\220\214\347\232\204\346\240\221/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/2.100-\347\233\270\345\220\214\347\232\204\346\240\221/solution.md" @@ -7,7 +7,7 @@ ### before -```cpp +```c #include using namespace std; @@ -25,13 +25,13 @@ struct TreeNode ### after -```cpp +```c ``` ## 答案 -```cpp +```c 都是错的 ``` ## 选项 @@ -39,7 +39,7 @@ struct TreeNode ### A -```cpp +```c class Solution { public: @@ -54,7 +54,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -83,7 +83,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/3.124-\344\272\214\345\217\211\346\240\221\344\270\255\347\232\204\346\234\200\345\244\247\350\267\257\345\276\204\345\222\214/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/3.124-\344\272\214\345\217\211\346\240\221\344\270\255\347\232\204\346\234\200\345\244\247\350\267\257\345\276\204\345\222\214/solution.md" index 09e2cda472041ca44514e4a9a9cc25e190f7b1e8..80fa91d3b4aa24e2843286b290c4371ad1b6e6f0 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/3.124-\344\272\214\345\217\211\346\240\221\344\270\255\347\232\204\346\234\200\345\244\247\350\267\257\345\276\204\345\222\214/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/3.124-\344\272\214\345\217\211\346\240\221\344\270\255\347\232\204\346\234\200\345\244\247\350\267\257\345\276\204\345\222\214/solution.md" @@ -38,7 +38,7 @@ ### before -```cpp +```c #include using namespace std; @@ -55,13 +55,13 @@ struct TreeNode ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -95,7 +95,7 @@ public: ### A -```cpp +```c class Solution { int res = INT_MIN; @@ -124,7 +124,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -151,7 +151,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/4.98-\351\252\214\350\257\201\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/4.98-\351\252\214\350\257\201\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221/solution.md" index 6f6374ac5672839f12b2816300fe2af91582a3ed..5d7ba221a65114562ad6d9255a3e0cbee86b13d5 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/4.98-\351\252\214\350\257\201\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/4.98-\351\252\214\350\257\201\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221/solution.md" @@ -41,7 +41,7 @@ ### before -```cpp +```c #include using namespace std; @@ -58,13 +58,13 @@ struct TreeNode ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -90,7 +90,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -113,7 +113,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -142,7 +142,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/5.96-\344\270\215\345\220\214\347\232\204\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/5.96-\344\270\215\345\220\214\347\232\204\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221/solution.md" index 116aa31ce63d00c0df246b98702edb3bbf5524ca..56b874a5901c057f2d3a3e4ab0c7bff9c9d8dd53 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/5.96-\344\270\215\345\220\214\347\232\204\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/5.96-\344\270\215\345\220\214\347\232\204\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221/solution.md" @@ -33,20 +33,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -80,7 +80,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -111,7 +111,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -136,7 +136,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/6.99-\346\201\242\345\244\215\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/6.99-\346\201\242\345\244\215\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221/solution.md" index 14db6d876fbc9e45b2419263599f5fe3fae61587..df7e990067903574bd93e1510e833df06da37b9f 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/6.99-\346\201\242\345\244\215\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/6.99-\346\201\242\345\244\215\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221/solution.md" @@ -7,7 +7,7 @@ ### before -```cpp +```c #include using namespace std; @@ -24,13 +24,13 @@ struct TreeNode ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -73,7 +73,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -104,7 +104,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -166,7 +166,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/7.94-\344\272\214\345\217\211\346\240\221\347\232\204\344\270\255\345\272\217\351\201\215\345\216\206/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/7.94-\344\272\214\345\217\211\346\240\221\347\232\204\344\270\255\345\272\217\351\201\215\345\216\206/solution.md" index 9ffab5fcf96e6c1da429fe68e27e806d1509f97b..541e612ef83a1a99a9ce5f7d5184cb45fdb4d5aa 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/7.94-\344\272\214\345\217\211\346\240\221\347\232\204\344\270\255\345\272\217\351\201\215\345\216\206/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/7.94-\344\272\214\345\217\211\346\240\221\347\232\204\344\270\255\345\272\217\351\201\215\345\216\206/solution.md" @@ -7,7 +7,7 @@ ### before -```cpp +```c #include using namespace std; @@ -24,13 +24,13 @@ struct TreeNode ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -57,7 +57,7 @@ private: ### A -```cpp +```c class Solution { public: @@ -89,7 +89,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -120,7 +120,7 @@ public: ### C -```cpp +```c class Solution { private: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/8.101-\345\257\271\347\247\260\344\272\214\345\217\211\346\240\221/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/8.101-\345\257\271\347\247\260\344\272\214\345\217\211\346\240\221/solution.md" index 4293bf0715ba6f0b56c0972ec4286b35a3303ea5..b405db3b9240fb74d49a8b7568464576863eabdb 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/8.101-\345\257\271\347\247\260\344\272\214\345\217\211\346\240\221/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/8.101-\345\257\271\347\247\260\344\272\214\345\217\211\346\240\221/solution.md" @@ -36,7 +36,7 @@ ### before -```cpp +```c #include using namespace std; @@ -53,13 +53,13 @@ struct TreeNode ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -96,7 +96,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -129,7 +129,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -152,7 +152,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/9.102-\344\272\214\345\217\211\346\240\221\347\232\204\345\261\202\345\272\217\351\201\215\345\216\206/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/9.102-\344\272\214\345\217\211\346\240\221\347\232\204\345\261\202\345\272\217\351\201\215\345\216\206/solution.md" index 7cb61f525379eb5114fa41d5b77dd86c5180ca9b..21b7b9ed05bba52cd5d5589b63ffaa522aee1eef 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/9.102-\344\272\214\345\217\211\346\240\221\347\232\204\345\261\202\345\272\217\351\201\215\345\216\206/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/1.leetcode-\346\240\221/9.102-\344\272\214\345\217\211\346\240\221\347\232\204\345\261\202\345\272\217\351\201\215\345\216\206/solution.md" @@ -31,7 +31,7 @@ ### before -```cpp +```c #include using namespace std; @@ -48,13 +48,13 @@ struct TreeNode ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -91,7 +91,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -129,7 +129,7 @@ public: ### B -```cpp +```c class Solution { @@ -160,7 +160,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/1.30-\344\270\262\350\201\224\346\211\200\346\234\211\345\215\225\350\257\215\347\232\204\345\255\220\344\270\262/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/1.30-\344\270\262\350\201\224\346\211\200\346\234\211\345\215\225\350\257\215\347\232\204\345\255\220\344\270\262/solution.md" index 81a74d8d1abaffe1b0a6fffd1e112d7ddfa61bab..8898adae256ea251f5148331bcefac657c8e2457 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/1.30-\344\270\262\350\201\224\346\211\200\346\234\211\345\215\225\350\257\215\347\232\204\345\255\220\344\270\262/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/1.30-\344\270\262\350\201\224\346\211\200\346\234\211\345\215\225\350\257\215\347\232\204\345\255\220\344\270\262/solution.md" @@ -14,14 +14,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -38,7 +38,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -85,7 +85,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -125,7 +125,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -184,7 +184,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/10.166-\345\210\206\346\225\260\345\210\260\345\260\217\346\225\260/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/10.166-\345\210\206\346\225\260\345\210\260\345\260\217\346\225\260/solution.md" index 6d1fbafd4db2b8654d415d5383d0215c098d3546..7771d38536cf4227f4cc1de02dc8f8fef66972c5 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/10.166-\345\210\206\346\225\260\345\210\260\345\260\217\346\225\260/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/10.166-\345\210\206\346\225\260\345\210\260\345\260\217\346\225\260/solution.md" @@ -60,14 +60,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -81,7 +81,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -157,7 +157,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -193,7 +193,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -235,7 +235,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/2.205-\345\220\214\346\236\204\345\255\227\347\254\246\344\270\262/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/2.205-\345\220\214\346\236\204\345\255\227\347\254\246\344\270\262/solution.md" index e2cd92a3a2b164c519a1acc3ab1c1b430145dd5c..7f6c309f0eaf35c97f7b6054603203e33833a24b 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/2.205-\345\220\214\346\236\204\345\255\227\347\254\246\344\270\262/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/2.205-\345\220\214\346\236\204\345\255\227\347\254\246\344\270\262/solution.md" @@ -41,14 +41,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -65,7 +65,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -112,7 +112,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -132,7 +132,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -180,7 +180,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/3.36-\346\234\211\346\225\210\347\232\204\346\225\260\347\213\254/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/3.36-\346\234\211\346\225\210\347\232\204\346\225\260\347\213\254/solution.md" index 2e61327725178c68dc3516f2ee1c4701ba99ea1f..8b2f8776a690f6b7a5dcb5a5fa13ecdf4ca9370a 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/3.36-\346\234\211\346\225\210\347\232\204\346\225\260\347\213\254/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/3.36-\346\234\211\346\225\210\347\232\204\346\225\260\347\213\254/solution.md" @@ -54,19 +54,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -102,7 +102,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -171,7 +171,7 @@ private: ### B -```cpp +```c class Solution { public: @@ -269,7 +269,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/4.41-\347\274\272\345\244\261\347\232\204\347\254\254\344\270\200\344\270\252\346\255\243\346\225\260/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/4.41-\347\274\272\345\244\261\347\232\204\347\254\254\344\270\200\344\270\252\346\255\243\346\225\260/solution.md" index c1f440712d8c4cc49ae70e268bf0d830c6104469..b94a4462b6e4c4de2933eb84a4c38d40713a87a5 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/4.41-\347\274\272\345\244\261\347\232\204\347\254\254\344\270\200\344\270\252\346\255\243\346\225\260/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/4.41-\347\274\272\345\244\261\347\232\204\347\254\254\344\270\200\344\270\252\346\255\243\346\225\260/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -30,7 +30,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -58,7 +58,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -94,7 +94,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -123,7 +123,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/5.76-\346\234\200\345\260\217\350\246\206\347\233\226\345\255\220\344\270\262/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/5.76-\346\234\200\345\260\217\350\246\206\347\233\226\345\255\220\344\270\262/solution.md" index d624fe891885cc8201b2488d89ef31a4f067a008..17a8bfc5e2d7d94566235bd838f95ffc96c02d50 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/5.76-\346\234\200\345\260\217\350\246\206\347\233\226\345\255\220\344\270\262/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/5.76-\346\234\200\345\260\217\350\246\206\347\233\226\345\255\220\344\270\262/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -30,7 +30,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -66,7 +66,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -120,7 +120,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -155,7 +155,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/6.49-\345\255\227\346\257\215\345\274\202\344\275\215\350\257\215\345\210\206\347\273\204/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/6.49-\345\255\227\346\257\215\345\274\202\344\275\215\350\257\215\345\210\206\347\273\204/solution.md" index ac5eb7f123eb5adf3907fabd37c0fa748ef6fd5c..bbf1edaccd7738ea54841c85327c88a75c5da72e 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/6.49-\345\255\227\346\257\215\345\274\202\344\275\215\350\257\215\345\210\206\347\273\204/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/6.49-\345\255\227\346\257\215\345\274\202\344\275\215\350\257\215\345\210\206\347\273\204/solution.md" @@ -14,14 +14,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -42,7 +42,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -73,7 +73,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -107,7 +107,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -138,7 +138,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/7.126-\345\215\225\350\257\215\346\216\245\351\276\231 II/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/7.126-\345\215\225\350\257\215\346\216\245\351\276\231 II/solution.md" index 712e00f8369a5f4445ec7bd2380a0518fb0826a0..d9a8e6fbd3bef51a818391b0678682d9c64e6907 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/7.126-\345\215\225\350\257\215\346\216\245\351\276\231 II/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/7.126-\345\215\225\350\257\215\346\216\245\351\276\231 II/solution.md" @@ -54,14 +54,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -81,7 +81,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -150,7 +150,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -223,7 +223,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -294,7 +294,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/8.127-\345\215\225\350\257\215\346\216\245\351\276\231/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/8.127-\345\215\225\350\257\215\346\216\245\351\276\231/solution.md" index 418f3c0fa4bc48b6b1144849023ba9b9e4e9d1c4..e5d00f91786d2a987ab049302a4107db75a972a4 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/8.127-\345\215\225\350\257\215\346\216\245\351\276\231/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/8.127-\345\215\225\350\257\215\346\216\245\351\276\231/solution.md" @@ -47,14 +47,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -69,7 +69,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -128,7 +128,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -167,7 +167,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -214,7 +214,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/9.128-\346\234\200\351\225\277\350\277\236\347\273\255\345\272\217\345\210\227/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/9.128-\346\234\200\351\225\277\350\277\236\347\273\255\345\272\217\345\210\227/solution.md" index 5990771dd895eab134d720f53ffbc4924dde3274..ff8578325f56e24a368a5e0f2471cffac427ed32 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/9.128-\346\234\200\351\225\277\350\277\236\347\273\255\345\272\217\345\210\227/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/2.leetcode-\345\223\210\345\270\214\350\241\250/9.128-\346\234\200\351\225\277\350\277\236\347\273\255\345\272\217\345\210\227/solution.md" @@ -35,14 +35,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -56,7 +56,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -91,7 +91,7 @@ public: ### A -```cpp +```c class Solution { @@ -120,7 +120,7 @@ public: ### B -```cpp +```c class Solution { @@ -203,7 +203,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/1.77-\347\273\204\345\220\210/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/1.77-\347\273\204\345\220\210/solution.md" index b4471a77f019518291aafb9257b6811691230755..50e26ebb64527d675317b1e72aba3d039a72bceb 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/1.77-\347\273\204\345\220\210/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/1.77-\347\273\204\345\220\210/solution.md" @@ -9,14 +9,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -37,7 +37,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -90,7 +90,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -120,7 +120,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -149,7 +149,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/10.130-\350\242\253\345\233\264\347\273\225\347\232\204\345\214\272\345\237\237/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/10.130-\350\242\253\345\233\264\347\273\225\347\232\204\345\214\272\345\237\237/solution.md" index 49145ce4a423a52558ee81b4fec3a4ab5cb37747..583f1d8148b7077520e91572e90f201644dff81c 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/10.130-\350\242\253\345\233\264\347\273\225\347\232\204\345\214\272\345\237\237/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/10.130-\350\242\253\345\233\264\347\273\225\347\232\204\345\214\272\345\237\237/solution.md" @@ -39,14 +39,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -65,7 +65,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -123,7 +123,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -177,7 +177,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -239,7 +239,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/2.133-\345\205\213\351\232\206\345\233\276/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/2.133-\345\205\213\351\232\206\345\233\276/solution.md" index b28e9b102366b9ab317024d9492b6030555c2688..b950412a41865e2d969218afcdb9858b475c0864 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/2.133-\345\205\213\351\232\206\345\233\276/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/2.133-\345\205\213\351\232\206\345\233\276/solution.md" @@ -76,7 +76,7 @@ ### before -```cpp +```c #include using namespace std; @@ -105,13 +105,13 @@ public: ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -141,7 +141,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -183,7 +183,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -208,7 +208,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/3.332-\351\207\215\346\226\260\345\256\211\346\216\222\350\241\214\347\250\213/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/3.332-\351\207\215\346\226\260\345\256\211\346\216\222\350\241\214\347\250\213/solution.md" index 7503a4205a3fa502a7914fcf7d0e182b96e4fee3..c3c4780d9e31d916a0bf1e5562713e9cb66cd3d5 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/3.332-\351\207\215\346\226\260\345\256\211\346\216\222\350\241\214\347\250\213/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/3.332-\351\207\215\346\226\260\345\256\211\346\216\222\350\241\214\347\250\213/solution.md" @@ -46,20 +46,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c unordered_map rev; int cmp(pair x, pair y) { @@ -135,7 +135,7 @@ public: ### A -```cpp +```c class Solution { @@ -189,7 +189,7 @@ public: ### B -```cpp +```c class Solution { unordered_map> m; @@ -219,7 +219,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/4.207-\350\257\276\347\250\213\350\241\250/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/4.207-\350\257\276\347\250\213\350\241\250/solution.md" index a7e0099153dbb24f95378271fc13710a8fb27498..0f95c0d99f79e31f32938a652d2e2c2ddf9410f7 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/4.207-\350\257\276\347\250\213\350\241\250/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/4.207-\350\257\276\347\250\213\350\241\250/solution.md" @@ -44,20 +44,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -116,7 +116,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -159,7 +159,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -201,7 +201,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/5.329-\347\237\251\351\230\265\344\270\255\347\232\204\346\234\200\351\225\277\351\200\222\345\242\236\350\267\257\345\276\204/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/5.329-\347\237\251\351\230\265\344\270\255\347\232\204\346\234\200\351\225\277\351\200\222\345\242\236\350\267\257\345\276\204/solution.md" index 458e3e06f43c4592fafccdd2dcd18b29f4adb7d4..7e2f1d707eaa6c70166f2c972bbe47e44433dae0 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/5.329-\347\237\251\351\230\265\344\270\255\347\232\204\346\234\200\351\225\277\351\200\222\345\242\236\350\267\257\345\276\204/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/5.329-\347\237\251\351\230\265\344\270\255\347\232\204\346\234\200\351\225\277\351\200\222\345\242\236\350\267\257\345\276\204/solution.md" @@ -45,20 +45,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -107,7 +107,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -147,7 +147,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -209,7 +209,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/6.210-\350\257\276\347\250\213\350\241\250 II/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/6.210-\350\257\276\347\250\213\350\241\250 II/solution.md" index 819cb942b6f574eb8baea59db0ae723cfde2c9f1..4fa9781739f53c28e4612aa74059345128531124 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/6.210-\350\257\276\347\250\213\350\241\250 II/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/6.210-\350\257\276\347\250\213\350\241\250 II/solution.md" @@ -63,20 +63,20 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -133,7 +133,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -173,7 +173,7 @@ public: ### B -```cpp +```c class Solution { private: @@ -244,7 +244,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/7.79-\345\215\225\350\257\215\346\220\234\347\264\242/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/7.79-\345\215\225\350\257\215\346\220\234\347\264\242/solution.md" index 757a507eb5e023407269c32b6578c76f06e58622..f145167663977c717cdd680a03cb56afd74ac23b 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/7.79-\345\215\225\350\257\215\346\220\234\347\264\242/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/7.79-\345\215\225\350\257\215\346\220\234\347\264\242/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -31,7 +31,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -75,7 +75,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -107,7 +107,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -155,7 +155,7 @@ private: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/8.112-\350\267\257\345\276\204\346\200\273\345\222\214/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/8.112-\350\267\257\345\276\204\346\200\273\345\222\214/solution.md" index c55f92566fc4fab682ec8a527099895c63b316a4..d643cc649a865793914b885fb6baae00c476e183 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/8.112-\350\267\257\345\276\204\346\200\273\345\222\214/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/8.112-\350\267\257\345\276\204\346\200\273\345\222\214/solution.md" @@ -43,7 +43,7 @@ ### before -```cpp +```c #include using namespace std; @@ -60,20 +60,20 @@ struct TreeNode ### after -```cpp +```c ``` ## 答案 -```cpp +```c 其他三个都是错的 ``` ## 选项 ### A -```cpp +```c class Solution { public: @@ -118,7 +118,7 @@ public: ### B -```cpp +```c class Solution { @@ -150,7 +150,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/9.113-\350\267\257\345\276\204\346\200\273\345\222\214 II/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/9.113-\350\267\257\345\276\204\346\200\273\345\222\214 II/solution.md" index c913220aebc9b81dd4d8a3034feae952531ff9f4..4646dd56c4eef812b19dd0579d68004f1fcdfc79 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/9.113-\350\267\257\345\276\204\346\200\273\345\222\214 II/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/3.leetcode-\345\233\276\344\270\216\346\220\234\347\264\242/9.113-\350\267\257\345\276\204\346\200\273\345\222\214 II/solution.md" @@ -47,7 +47,7 @@ ### before -```cpp +```c #include using namespace std; @@ -65,13 +65,13 @@ struct TreeNode ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -103,7 +103,7 @@ private: ### A -```cpp +```c class Solution { public: @@ -145,7 +145,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -174,7 +174,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/1.29-\344\270\244\346\225\260\347\233\270\351\231\244/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/1.29-\344\270\244\346\225\260\347\233\270\351\231\244/solution.md" index dbf6e003f3d194aca0c77eaf7185b195c654c9ea..185f99de1948ec0862f8ec33eed414a260c6bda9 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/1.29-\344\270\244\346\225\260\347\233\270\351\231\244/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/1.29-\344\270\244\346\225\260\347\233\270\351\231\244/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -27,7 +27,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -60,7 +60,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -108,7 +108,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -140,7 +140,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/10.60-\346\216\222\345\210\227\345\272\217\345\210\227/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/10.60-\346\216\222\345\210\227\345\272\217\345\210\227/solution.md" index c23989568bd7ce761e779890ed50f65d7e85c291..c49451f5494df28ed3eebd5769be16c0227a0507 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/10.60-\346\216\222\345\210\227\345\272\217\345\210\227/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/10.60-\346\216\222\345\210\227\345\272\217\345\210\227/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -30,7 +30,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -65,7 +65,7 @@ public: ### A -```cpp +```c class Solution { @@ -101,7 +101,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -143,7 +143,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/2.12-\346\225\264\346\225\260\350\275\254\347\275\227\351\251\254\346\225\260\345\255\227/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/2.12-\346\225\264\346\225\260\350\275\254\347\275\227\351\251\254\346\225\260\345\255\227/solution.md" index c2ee663b09bef3807ce4300953138a6528521433..b10a74bcc75e1adb7b587c35a269a9efb8133e31 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/2.12-\346\225\264\346\225\260\350\275\254\347\275\227\351\251\254\346\225\260\345\255\227/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/2.12-\346\225\264\346\225\260\350\275\254\347\275\227\351\251\254\346\225\260\345\255\227/solution.md" @@ -75,14 +75,14 @@ M 1000 ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -94,7 +94,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -122,7 +122,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -244,7 +244,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -268,7 +268,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/3.50-Pow(x, n)/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/3.50-Pow(x, n)/solution.md" index a72232af439b03df5fd771391ade473d5c55c7b6..0da693a44265a13fe1a61a766e4dfe2cbbe61e1b 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/3.50-Pow(x, n)/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/3.50-Pow(x, n)/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -31,7 +31,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -57,7 +57,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -96,7 +96,7 @@ private: ### B -```cpp +```c class Solution { public: @@ -127,7 +127,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/4.9-\345\233\236\346\226\207\346\225\260/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/4.9-\345\233\236\346\226\207\346\225\260/solution.md" index 851d1a043c6dbc6f0a0070fd8f1af9eabc89e9c7..47fa8691cf2dfea6e7f63d91c88c0d98db57242a 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/4.9-\345\233\236\346\226\207\346\225\260/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/4.9-\345\233\236\346\226\207\346\225\260/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -26,7 +26,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -47,7 +47,7 @@ public: ### A -```cpp +```c class Solution { @@ -73,7 +73,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -94,7 +94,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/5.66-\345\212\240\344\270\200/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/5.66-\345\212\240\344\270\200/solution.md" index 1e964ab1238be71b38e27bfea0af8720c7640ed1..9d2be68a6d2c9fc56b79d942f437a323442e1430 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/5.66-\345\212\240\344\270\200/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/5.66-\345\212\240\344\270\200/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -29,7 +29,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -57,7 +57,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -84,7 +84,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -112,7 +112,7 @@ public: ### C -```cpp +```c class Solution { diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/6.7-\346\225\264\346\225\260\345\217\215\350\275\254/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/6.7-\346\225\264\346\225\260\345\217\215\350\275\254/solution.md" index 57cadeb1615486bdd1b92993ea7b1543942450f2..04c113ba0a95f72c6eebc09d8284718af87b89e9 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/6.7-\346\225\264\346\225\260\345\217\215\350\275\254/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/6.7-\346\225\264\346\225\260\345\217\215\350\275\254/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution test; @@ -31,7 +31,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -52,7 +52,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -86,7 +86,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -110,7 +110,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/7.67-\344\272\214\350\277\233\345\210\266\346\261\202\345\222\214/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/7.67-\344\272\214\350\277\233\345\210\266\346\261\202\345\222\214/solution.md" index 41691e399576f473a2e9c7d13e74d412e4e3afd7..8dd5a8f08eec95b0906ea0f19e6384e23b2378f2 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/7.67-\344\272\214\350\277\233\345\210\266\346\261\202\345\222\214/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/7.67-\344\272\214\350\277\233\345\210\266\346\261\202\345\222\214/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -29,7 +29,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -57,7 +57,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -100,7 +100,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -152,7 +152,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/8.69-x \347\232\204\345\271\263\346\226\271\346\240\271/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/8.69-x \347\232\204\345\271\263\346\226\271\346\240\271/solution.md" index fd4d65bae13f5cfa65baef37c22544b36af66ce5..a8cb5c2e4d088c107ac8efec87b7904490e3ab11 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/8.69-x \347\232\204\345\271\263\346\226\271\346\240\271/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/8.69-x \347\232\204\345\271\263\346\226\271\346\240\271/solution.md" @@ -13,14 +13,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -35,7 +35,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -60,7 +60,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -82,7 +82,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -109,7 +109,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/9.13-\347\275\227\351\251\254\346\225\260\345\255\227\350\275\254\346\225\264\346\225\260/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/9.13-\347\275\227\351\251\254\346\225\260\345\255\227\350\275\254\346\225\264\346\225\260/solution.md" index 4a0bbb0683af1ec432b21865d6775e80d074d493..47d59c3a0035a40dc1321ab4c82d2b809119e407 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/9.13-\347\275\227\351\251\254\346\225\260\345\255\227\350\275\254\346\225\264\346\225\260/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/4.leetcode-\346\225\260\345\255\246/9.13-\347\275\227\351\251\254\346\225\260\345\255\227\350\275\254\346\225\264\346\225\260/solution.md" @@ -75,14 +75,14 @@ M 1000 ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -94,7 +94,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -201,7 +201,7 @@ private: ### A -```cpp +```c class Solution { public: @@ -275,7 +275,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -308,7 +308,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/1.355-\350\256\276\350\256\241\346\216\250\347\211\271/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/1.355-\350\256\276\350\256\241\346\216\250\347\211\271/solution.md" index cb7c8202609761559c5776e0336a680a39d07528..297aa243414d692f17939e2c72f5317980541f32 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/1.355-\350\256\276\350\256\241\346\216\250\347\211\271/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/1.355-\350\256\276\350\256\241\346\216\250\347\211\271/solution.md" @@ -50,20 +50,20 @@ twitter.getNewsFeed(1); // 用户 1 获取推文应当返回一个列表,其 ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Twitter { public: @@ -168,7 +168,7 @@ private: ### A -```cpp +```c class Twitter { private: @@ -232,7 +232,7 @@ public: ### B -```cpp +```c class Twitter { public: @@ -297,7 +297,7 @@ private: ### C -```cpp +```c class Twitter { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/10.297-\344\272\214\345\217\211\346\240\221\347\232\204\345\272\217\345\210\227\345\214\226\344\270\216\345\217\215\345\272\217\345\210\227\345\214\226/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/10.297-\344\272\214\345\217\211\346\240\221\347\232\204\345\272\217\345\210\227\345\214\226\344\270\216\345\217\215\345\272\217\345\210\227\345\214\226/solution.md" index 77886477f4a6ded8b42c0d630c5bd468cabe40de..221ec5dfe4c0a45966890e65682eddc31df2e492 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/10.297-\344\272\214\345\217\211\346\240\221\347\232\204\345\272\217\345\210\227\345\214\226\344\270\216\345\217\215\345\272\217\345\210\227\345\214\226/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/10.297-\344\272\214\345\217\211\346\240\221\347\232\204\345\272\217\345\210\227\345\214\226\344\270\216\345\217\215\345\272\217\345\210\227\345\214\226/solution.md" @@ -51,7 +51,7 @@ ### before -```cpp +```c #include using namespace std; @@ -68,13 +68,13 @@ struct TreeNode ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Codec { public: @@ -114,7 +114,7 @@ public: ### A -```cpp +```c class Codec { public: @@ -153,7 +153,7 @@ public: ### B -```cpp +```c class Codec { public: @@ -268,7 +268,7 @@ public: ### C -```cpp +```c class Codec { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/2.380-O(1) \346\227\266\351\227\264\346\217\222\345\205\245\343\200\201\345\210\240\351\231\244\345\222\214\350\216\267\345\217\226\351\232\217\346\234\272\345\205\203\347\264\240/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/2.380-O(1) \346\227\266\351\227\264\346\217\222\345\205\245\343\200\201\345\210\240\351\231\244\345\222\214\350\216\267\345\217\226\351\232\217\346\234\272\345\205\203\347\264\240/solution.md" index b73ded3e920006ddcee99c389f62ccd944171f49..cd878c0f58e9228fb2d62f14f5de277ca980de77 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/2.380-O(1) \346\227\266\351\227\264\346\217\222\345\205\245\343\200\201\345\210\240\351\231\244\345\222\214\350\216\267\345\217\226\351\232\217\346\234\272\345\205\203\347\264\240/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/2.380-O(1) \346\227\266\351\227\264\346\217\222\345\205\245\343\200\201\345\210\240\351\231\244\345\222\214\350\216\267\345\217\226\351\232\217\346\234\272\345\205\203\347\264\240/solution.md" @@ -53,7 +53,7 @@ randomizedSet.getRandom(); // 由于 2 是集合中唯一的数字,getRandom ### before -```cpp +```c #include using namespace std; @@ -61,13 +61,13 @@ using namespace std; ### after -```cpp +```c ``` ## 答案 -```cpp +```c class RandomizedSet { unordered_map dict; @@ -115,7 +115,7 @@ public: ### A -```cpp +```c class RandomizedSet { public: @@ -170,7 +170,7 @@ private: ### B -```cpp +```c class RandomizedSet { public: @@ -215,7 +215,7 @@ public: ### C -```cpp +```c class RandomizedSet { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/3.381-O(1) \346\227\266\351\227\264\346\217\222\345\205\245\343\200\201\345\210\240\351\231\244\345\222\214\350\216\267\345\217\226\351\232\217\346\234\272\345\205\203\347\264\240 - \345\205\201\350\256\270\351\207\215\345\244\215/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/3.381-O(1) \346\227\266\351\227\264\346\217\222\345\205\245\343\200\201\345\210\240\351\231\244\345\222\214\350\216\267\345\217\226\351\232\217\346\234\272\345\205\203\347\264\240 - \345\205\201\350\256\270\351\207\215\345\244\215/solution.md" index 01d2ac30b216fdff4b305fc5fe04af298d0a8a08..f0fd234ad6f98906b9a75316d28f7ae61295850a 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/3.381-O(1) \346\227\266\351\227\264\346\217\222\345\205\245\343\200\201\345\210\240\351\231\244\345\222\214\350\216\267\345\217\226\351\232\217\346\234\272\345\205\203\347\264\240 - \345\205\201\350\256\270\351\207\215\345\244\215/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/3.381-O(1) \346\227\266\351\227\264\346\217\222\345\205\245\343\200\201\345\210\240\351\231\244\345\222\214\350\216\267\345\217\226\351\232\217\346\234\272\345\205\203\347\264\240 - \345\205\201\350\256\270\351\207\215\345\244\215/solution.md" @@ -40,20 +40,20 @@ collection.getRandom(); ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c class RandomizedCollection { public: @@ -123,7 +123,7 @@ private: ### A -```cpp +```c class RandomizedSet { public: @@ -171,7 +171,7 @@ public: ### B -```cpp +```c class RandomizedCollection { public: @@ -224,7 +224,7 @@ public: ### C -```cpp +```c class RandomizedCollection { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/4.460-LFU \347\274\223\345\255\230/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/4.460-LFU \347\274\223\345\255\230/solution.md" index 142406b2b1a6a57458d10061eab3b01b35b8ce9d..918297d8cbb87a967e155822d1201a29ab5215be 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/4.460-LFU \347\274\223\345\255\230/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/4.460-LFU \347\274\223\345\255\230/solution.md" @@ -67,20 +67,20 @@ lFUCache.get(4); // 返回 4 ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c class LFUCache { private: @@ -141,7 +141,7 @@ public: ### A -```cpp +```c class Node { public: @@ -226,7 +226,7 @@ public: ### B -```cpp +```c class LFUCache { public: @@ -326,7 +326,7 @@ private: ### C -```cpp +```c struct Value { Value(int count_, int time_, int key_, int value_) diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/5.146-LRU \347\274\223\345\255\230\346\234\272\345\210\266/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/5.146-LRU \347\274\223\345\255\230\346\234\272\345\210\266/solution.md" index 167a4b2bf4afc886c9d0428177ddfa264313344f..9d0b745f39d75574ba97b56ad957c94a1f0cc58b 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/5.146-LRU \347\274\223\345\255\230\346\234\272\345\210\266/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/5.146-LRU \347\274\223\345\255\230\346\234\272\345\210\266/solution.md" @@ -59,20 +59,20 @@ lRUCache.get(4); // 返回 4 ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c class LRUCache { public: @@ -119,7 +119,7 @@ private: ### A -```cpp +```c class LRUCache { private: @@ -214,7 +214,7 @@ public: ### B -```cpp +```c class LRUCache { private: @@ -270,7 +270,7 @@ public: ### C -```cpp +```c class LRUCache { private: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/6.173-\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\350\277\255\344\273\243\345\231\250/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/6.173-\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\350\277\255\344\273\243\345\231\250/solution.md" index 6fdd61271b704b0157172cd543b1d7c97751f894..cbfe7aa1e92568899aa80e4f7ec25fd53f36ef38 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/6.173-\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\350\277\255\344\273\243\345\231\250/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/6.173-\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\350\277\255\344\273\243\345\231\250/solution.md" @@ -63,7 +63,7 @@ bSTIterator.hasNext(); // 返回 False ### before -```cpp +```c #include using namespace std; @@ -80,7 +80,7 @@ struct TreeNode ### after -```cpp +```c /** * Your BSTIterator object will be instantiated and called as such: * BSTIterator* obj = new BSTIterator(root); @@ -91,7 +91,7 @@ struct TreeNode ## 答案 -```cpp +```c class BSTIterator { private: @@ -136,7 +136,7 @@ public: ### A -```cpp +```c class BSTIterator { private: @@ -179,7 +179,7 @@ public: ### B -```cpp +```c class BSTIterator { public: @@ -222,7 +222,7 @@ public: ### C -```cpp +```c class BSTIterator { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/7.208-\345\256\236\347\216\260 Trie (\345\211\215\347\274\200\346\240\221)/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/7.208-\345\256\236\347\216\260 Trie (\345\211\215\347\274\200\346\240\221)/solution.md" index b77f9bbd5276ebb9349f91dc20e12779ed2fdedf..c3f211ef1ca9b1f5cd6a96d3621f2804c9f3daef 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/7.208-\345\256\236\347\216\260 Trie (\345\211\215\347\274\200\346\240\221)/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/7.208-\345\256\236\347\216\260 Trie (\345\211\215\347\274\200\346\240\221)/solution.md" @@ -48,20 +48,20 @@ trie.search("app"); // 返回 True ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c class TrieNode { public: @@ -129,7 +129,7 @@ public: ### A -```cpp +```c struct TrieNode { bool isEnd = false; @@ -187,7 +187,7 @@ private: ### B -```cpp +```c struct TrieNode { const static int MaxBranchNum = 26; @@ -248,7 +248,7 @@ private: ### C -```cpp +```c struct Node { map next; diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/8.535-TinyURL \347\232\204\345\212\240\345\257\206\344\270\216\350\247\243\345\257\206/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/8.535-TinyURL \347\232\204\345\212\240\345\257\206\344\270\216\350\247\243\345\257\206/solution.md" index 6cbad38b7dee0392e17d9c85b6788f994f7417e1..57c2a118ee50dce651a04c3b6d65cd7cd3f0fe45 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/8.535-TinyURL \347\232\204\345\212\240\345\257\206\344\270\216\350\247\243\345\257\206/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/8.535-TinyURL \347\232\204\345\212\240\345\257\206\344\270\216\350\247\243\345\257\206/solution.md" @@ -11,14 +11,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c // Your Solution object will be instantiated and called as such: // Solution solution; // solution.decode(solution.encode(url)); @@ -26,7 +26,7 @@ using namespace std; ## 答案 -```cpp +```c class Solution { public: @@ -49,7 +49,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -85,7 +85,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -132,7 +132,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/9.341-\346\211\201\345\271\263\345\214\226\345\265\214\345\245\227\345\210\227\350\241\250\350\277\255\344\273\243\345\231\250/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/9.341-\346\211\201\345\271\263\345\214\226\345\265\214\345\245\227\345\210\227\350\241\250\350\277\255\344\273\243\345\231\250/solution.md" index 3ada511c988d783179c8a951dc5251e3e05b3081..a0277fd42046526ebdff0c306332523eea3b157a 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/9.341-\346\211\201\345\271\263\345\214\226\345\265\214\345\245\227\345\210\227\350\241\250\350\277\255\344\273\243\345\231\250/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/5.leetcode-\350\256\276\350\256\241/9.341-\346\211\201\345\271\263\345\214\226\345\265\214\345\245\227\345\210\227\350\241\250\350\277\255\344\273\243\345\231\250/solution.md" @@ -53,7 +53,7 @@ return res ### before -```cpp +```c #include using namespace std; @@ -77,13 +77,13 @@ public: ### after -```cpp +```c ``` ## 答案 -```cpp +```c class NestedIterator { public: @@ -121,7 +121,7 @@ public: ### A -```cpp +```c class NestedIterator { public: @@ -161,7 +161,7 @@ public: ### B -```cpp +```c class NestedIterator { public: @@ -198,7 +198,7 @@ public: ### C -```cpp +```c class NestedIterator { stack::iterator> begins, ends; diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/1.22-\346\213\254\345\217\267\347\224\237\346\210\220/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/1.22-\346\213\254\345\217\267\347\224\237\346\210\220/solution.md" index f9bed6ae51271dad9209f4476fcce83f503e5dfc..423e192677656271624394d935347fb9b5450fac 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/1.22-\346\213\254\345\217\267\347\224\237\346\210\220/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/1.22-\346\213\254\345\217\267\347\224\237\346\210\220/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -31,7 +31,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -72,7 +72,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -105,7 +105,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -137,7 +137,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/10.63-\344\270\215\345\220\214\350\267\257\345\276\204 II/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/10.63-\344\270\215\345\220\214\350\267\257\345\276\204 II/solution.md" index 82b1fdfe05f44400af78323b1b42e3e6afe52505..d6f63f926ca20ae908c07311bac5cf4071235971 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/10.63-\344\270\215\345\220\214\350\267\257\345\276\204 II/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/10.63-\344\270\215\345\220\214\350\267\257\345\276\204 II/solution.md" @@ -29,14 +29,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -53,7 +53,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -83,7 +83,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -116,7 +116,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -154,7 +154,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/11.70-\347\210\254\346\245\274\346\242\257/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/11.70-\347\210\254\346\245\274\346\242\257/solution.md" index 26306c36199ad329d2505f4b06c46da13d01416c..761c4e5e368799cfda9eecb93db01f375e0a0a38 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/11.70-\347\210\254\346\245\274\346\242\257/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/11.70-\347\210\254\346\245\274\346\242\257/solution.md" @@ -7,7 +7,7 @@ ### before -```cpp +```c #include using namespace std; @@ -15,7 +15,7 @@ using namespace std; ### after -```cpp +```c int main() { Solution sol; @@ -30,7 +30,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -47,7 +47,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -71,7 +71,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -89,7 +89,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/12.44-\351\200\232\351\205\215\347\254\246\345\214\271\351\205\215/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/12.44-\351\200\232\351\205\215\347\254\246\345\214\271\351\205\215/solution.md" index de5a7a6f014460bd721abfb401f001ec86eafb2d..1b4d04b18f905aac2ed9e16b127249fbfcf24d3f 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/12.44-\351\200\232\351\205\215\347\254\246\345\214\271\351\205\215/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/12.44-\351\200\232\351\205\215\347\254\246\345\214\271\351\205\215/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -30,7 +30,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -86,7 +86,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -134,7 +134,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -167,7 +167,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/13.87-\346\211\260\344\271\261\345\255\227\347\254\246\344\270\262/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/13.87-\346\211\260\344\271\261\345\255\227\347\254\246\344\270\262/solution.md" index 4cb23adc60ed4433a92f735382ecf3cf569f9d2a..25facb621f4bc08394bd017cdeb06d96904e1c4f 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/13.87-\346\211\260\344\271\261\345\255\227\347\254\246\344\270\262/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/13.87-\346\211\260\344\271\261\345\255\227\347\254\246\344\270\262/solution.md" @@ -65,14 +65,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -87,7 +87,7 @@ int main() ## 答案 -```cpp +```c class Solution { unordered_map memo; @@ -132,7 +132,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -180,7 +180,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -218,7 +218,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/2.64-\346\234\200\345\260\217\350\267\257\345\276\204\345\222\214/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/2.64-\346\234\200\345\260\217\350\267\257\345\276\204\345\222\214/solution.md" index fa15f1a8b95db2fc838d996b427dd53da7b6c046..b1ab46d3df1a5d7cb7d04065cda3f8c77ef652dc 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/2.64-\346\234\200\345\260\217\350\267\257\345\276\204\345\222\214/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/2.64-\346\234\200\345\260\217\350\267\257\345\276\204\345\222\214/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -30,7 +30,7 @@ int main() ## 答案 -```cpp +```c class Solution { private: @@ -76,7 +76,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -104,7 +104,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -135,7 +135,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/3.91-\350\247\243\347\240\201\346\226\271\346\263\225/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/3.91-\350\247\243\347\240\201\346\226\271\346\263\225/solution.md" index de93697dc005842d23253c25b1776abc1fb717a7..6bde0b93f1057593b00cbb7ed5ac472206ddb378 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/3.91-\350\247\243\347\240\201\346\226\271\346\263\225/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/3.91-\350\247\243\347\240\201\346\226\271\346\263\225/solution.md" @@ -33,14 +33,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -54,7 +54,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -79,7 +79,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -128,7 +128,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -171,7 +171,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/4.10-\346\255\243\345\210\231\350\241\250\350\276\276\345\274\217\345\214\271\351\205\215/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/4.10-\346\255\243\345\210\231\350\241\250\350\276\276\345\274\217\345\214\271\351\205\215/solution.md" index 52e7cc6da41d275a3c404db02bda5455c13d6d84..6979e841626f19a7fb07cad06f91d26f4e13dd4f 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/4.10-\346\255\243\345\210\231\350\241\250\350\276\276\345\274\217\345\214\271\351\205\215/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/4.10-\346\255\243\345\210\231\350\241\250\350\276\276\345\274\217\345\214\271\351\205\215/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -27,7 +27,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -78,7 +78,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -125,7 +125,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -165,7 +165,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/5.5-\346\234\200\351\225\277\345\233\236\346\226\207\345\255\220\344\270\262/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/5.5-\346\234\200\351\225\277\345\233\236\346\226\207\345\255\220\344\270\262/solution.md" index 7bdd221c088066b2bad823aa0d0498943748863a..6588d8a972827dabb7abbe98febafbf5453fe8c3 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/5.5-\346\234\200\351\225\277\345\233\236\346\226\207\345\255\220\344\270\262/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/5.5-\346\234\200\351\225\277\345\233\236\346\226\207\345\255\220\344\270\262/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution test; @@ -29,7 +29,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -75,7 +75,7 @@ private: ### A -```cpp +```c class Solution { public: @@ -117,7 +117,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -161,7 +161,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/6.53-\346\234\200\345\244\247\345\255\220\345\272\217\345\222\214/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/6.53-\346\234\200\345\244\247\345\255\220\345\272\217\345\222\214/solution.md" index 6012b0a50ca8122a8061a642a5869ec580c1575d..4b921b944dee2b5f42f59cee97b69d344be44082 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/6.53-\346\234\200\345\244\247\345\255\220\345\272\217\345\222\214/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/6.53-\346\234\200\345\244\247\345\255\220\345\272\217\345\222\214/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -29,7 +29,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -52,7 +52,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -78,7 +78,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -117,7 +117,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/7.62-\344\270\215\345\220\214\350\267\257\345\276\204/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/7.62-\344\270\215\345\220\214\350\267\257\345\276\204/solution.md" index 3bcea3ec892e7380ae87dc632cc65ef06f41d727..ae34aa30eed34e713f27fb0c3c7e16483566c106 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/7.62-\344\270\215\345\220\214\350\267\257\345\276\204/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/7.62-\344\270\215\345\220\214\350\267\257\345\276\204/solution.md" @@ -25,14 +25,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -48,7 +48,7 @@ int main() ## 答案 -```cpp +```c class Solution { @@ -72,7 +72,7 @@ public: ### A -```cpp +```c typedef vector BigInt; class Solution { @@ -142,7 +142,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -177,7 +177,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/8.72-\347\274\226\350\276\221\350\267\235\347\246\273/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/8.72-\347\274\226\350\276\221\350\267\235\347\246\273/solution.md" index cdbda689fdcef30ebfe5e801c7e7b6d96f404dff..c89b747c2c2e58d9e06709e26af21124c9d16c5a 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/8.72-\347\274\226\350\276\221\350\267\235\347\246\273/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/8.72-\347\274\226\350\276\221\350\267\235\347\246\273/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -31,7 +31,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -65,7 +65,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -122,7 +122,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -167,7 +167,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/9.85-\346\234\200\345\244\247\347\237\251\345\275\242/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/9.85-\346\234\200\345\244\247\347\237\251\345\275\242/solution.md" index 206d8bb0ca121dbe57366011bc047d0dab2015fb..dd556defd80e2a7c344598ea86e62be2416bf71a 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/9.85-\346\234\200\345\244\247\347\237\251\345\275\242/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/6.leetcode-\345\212\250\346\200\201\350\247\204\345\210\222/9.85-\346\234\200\345\244\247\347\237\251\345\275\242/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -31,7 +31,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -79,7 +79,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -125,7 +125,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -199,7 +199,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/1.40-\347\273\204\345\220\210\346\200\273\345\222\214 II/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/1.40-\347\273\204\345\220\210\346\200\273\345\222\214 II/solution.md" index 3c5a6a988a3d3617026b4a6d603c0a9bb4d0cee7..7a5107ae7a00c7c5fc807c7f03935c143e958760 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/1.40-\347\273\204\345\220\210\346\200\273\345\222\214 II/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/1.40-\347\273\204\345\220\210\346\200\273\345\222\214 II/solution.md" @@ -18,14 +18,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -47,7 +47,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -87,7 +87,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -131,7 +131,7 @@ private: ### B -```cpp +```c class Solution { public: @@ -180,7 +180,7 @@ private: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/10.51-N \347\232\207\345\220\216/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/10.51-N \347\232\207\345\220\216/solution.md" index 8de61459b0a215013e842f0d0f3b43ebc6310cf0..d2aa18bf2f200b36ddea79ec29d4b42ee0743b84 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/10.51-N \347\232\207\345\220\216/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/10.51-N \347\232\207\345\220\216/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -34,7 +34,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -96,7 +96,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -146,7 +146,7 @@ private: ### B -```cpp +```c class Solution { public: @@ -209,7 +209,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/2.52-N\347\232\207\345\220\216 II/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/2.52-N\347\232\207\345\220\216 II/solution.md" index 2922cedb55e40dd76587f288a196ce099d5d27ce..e6e090ce8e2c42595faba2a56fa94eb3f347e6a9 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/2.52-N\347\232\207\345\220\216 II/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/2.52-N\347\232\207\345\220\216 II/solution.md" @@ -40,14 +40,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -62,7 +62,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -106,7 +106,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -153,7 +153,7 @@ private: ### B -```cpp +```c class Solution { public: @@ -204,7 +204,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/3.90-\345\255\220\351\233\206 II/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/3.90-\345\255\220\351\233\206 II/solution.md" index 88e1549bfd69d189ebb65e13308d9b3a9c81d333..af22871359bef2ff77a931a5311fed263f2c569a 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/3.90-\345\255\220\351\233\206 II/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/3.90-\345\255\220\351\233\206 II/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -33,7 +33,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -78,7 +78,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -118,7 +118,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -151,7 +151,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/4.89-\346\240\274\351\233\267\347\274\226\347\240\201/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/4.89-\346\240\274\351\233\267\347\274\226\347\240\201/solution.md" index 77635c0a5f8a3fa3a54a93185ae607a702d5661a..db97f2c9756bb8e301f7cdd4ef639fc4ab8ff642 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/4.89-\346\240\274\351\233\267\347\274\226\347\240\201/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/4.89-\346\240\274\351\233\267\347\274\226\347\240\201/solution.md" @@ -14,14 +14,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -37,7 +37,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -73,7 +73,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -93,7 +93,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -119,7 +119,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/5.47-\345\205\250\346\216\222\345\210\227 II/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/5.47-\345\205\250\346\216\222\345\210\227 II/solution.md" index 5f8502c804bf13349fd21e94ff686e02cd4063e0..2f6b668217f64cf3286e0c9cf8ac9521bd1f287c 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/5.47-\345\205\250\346\216\222\345\210\227 II/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/5.47-\345\205\250\346\216\222\345\210\227 II/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -35,7 +35,7 @@ int main() ## 答案 -```cpp +```c class Solution { private: @@ -79,7 +79,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -121,7 +121,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -166,7 +166,7 @@ private: ### C -```cpp +```c class Solution { diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/6.17-\347\224\265\350\257\235\345\217\267\347\240\201\347\232\204\345\255\227\346\257\215\347\273\204\345\220\210/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/6.17-\347\224\265\350\257\235\345\217\267\347\240\201\347\232\204\345\255\227\346\257\215\347\273\204\345\220\210/solution.md" index 561292e388e077d1fb14f8b293234f42afd65939..a7a1c564b6ea5a3fa9be01969db1eac41881ab3e 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/6.17-\347\224\265\350\257\235\345\217\267\347\240\201\347\232\204\345\255\227\346\257\215\347\273\204\345\220\210/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/6.17-\347\224\265\350\257\235\345\217\267\347\240\201\347\232\204\345\255\227\346\257\215\347\273\204\345\220\210/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -29,7 +29,7 @@ int main() ## 答案 -```cpp +```c string letterMap[10] = {" ", " ", "abc", "def", "ghi", "jkl", "mno", "pqrs", "tuv", "wxyz"}; class Solution { @@ -65,7 +65,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -153,7 +153,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -182,7 +182,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/7.39-\347\273\204\345\220\210\346\200\273\345\222\214/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/7.39-\347\273\204\345\220\210\346\200\273\345\222\214/solution.md" index 0b3ed618db0ee6249bd0f03772460ed46121a37b..366d16297cafe1143cb9dfb249946de38ed27a97 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/7.39-\347\273\204\345\220\210\346\200\273\345\222\214/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/7.39-\347\273\204\345\220\210\346\200\273\345\222\214/solution.md" @@ -26,14 +26,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -55,7 +55,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -97,7 +97,7 @@ public: ### A -```cpp +```c class Solution { @@ -136,7 +136,7 @@ private: ### B -```cpp +```c class Solution { public: @@ -178,7 +178,7 @@ public: ### C -```cpp +```c class Solution { private: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/8.46-\345\205\250\346\216\222\345\210\227/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/8.46-\345\205\250\346\216\222\345\210\227/solution.md" index da990da55730d76eeb232196f319671aaac1d345..9a75d40e6cd83c8c75914415b06d2c8a599b6b40 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/8.46-\345\205\250\346\216\222\345\210\227/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/8.46-\345\205\250\346\216\222\345\210\227/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { @@ -36,7 +36,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -73,7 +73,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -113,7 +113,7 @@ private: ### B -```cpp +```c class Solution { public: @@ -147,7 +147,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/9.37-\350\247\243\346\225\260\347\213\254/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/9.37-\350\247\243\346\225\260\347\213\254/solution.md" index 1e2069775800174546e3602b6653101ddd8c63f4..09f141397781dd4473e19f69d43769b6f06e984b 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/9.37-\350\247\243\346\225\260\347\213\254/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/7.leetcode-\345\233\236\346\272\257\347\256\227\346\263\225/9.37-\350\247\243\346\225\260\347\213\254/solution.md" @@ -57,19 +57,19 @@ ### before -```cpp +```c ``` ### after -```cpp +```c ``` ## 答案 -```cpp +```c class Solution { public: @@ -140,7 +140,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -218,7 +218,7 @@ private: ### B -```cpp +```c class Solution { public: @@ -287,7 +287,7 @@ private: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/1.122-\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272 II/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/1.122-\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272 II/solution.md" index 4af4c5b5ebd3ba55d1af58eeae75e90409241cfb..737c6550e33713e450c622e907d0c034f3ce5a6e 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/1.122-\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272 II/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/1.122-\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272 II/solution.md" @@ -48,14 +48,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -70,7 +70,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -94,7 +94,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -118,7 +118,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -143,7 +143,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/10.330-\346\214\211\350\246\201\346\261\202\350\241\245\351\275\220\346\225\260\347\273\204/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/10.330-\346\214\211\350\246\201\346\261\202\350\241\245\351\275\220\346\225\260\347\273\204/solution.md" index 44070f2619246b8fcd129ca57f7f194fb8efd74c..07d100aaa5d89a60cdf47e89808bf5b84e6cbc51 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/10.330-\346\214\211\350\246\201\346\261\202\350\241\245\351\275\220\346\225\260\347\273\204/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/10.330-\346\214\211\350\246\201\346\261\202\350\241\245\351\275\220\346\225\260\347\273\204/solution.md" @@ -31,7 +31,7 @@ ### before -```cpp +```c #include using namespace std; @@ -39,7 +39,7 @@ using namespace std; ### after -```cpp +```c int main() { Solution sol; @@ -54,7 +54,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -91,7 +91,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -120,7 +120,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -145,7 +145,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/2.45-\350\267\263\350\267\203\346\270\270\346\210\217 II/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/2.45-\350\267\263\350\267\203\346\270\270\346\210\217 II/solution.md" index 5ad75fee752aa3d11ebd0fb62c07d31d15436b17..06e6daf5ef988827f67fedbbb4ae653b14e5f639 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/2.45-\350\267\263\350\267\203\346\270\270\346\210\217 II/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/2.45-\350\267\263\350\267\203\346\270\270\346\210\217 II/solution.md" @@ -13,14 +13,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -36,7 +36,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -71,7 +71,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -97,7 +97,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -134,7 +134,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/3.68-\346\226\207\346\234\254\345\267\246\345\217\263\345\257\271\351\275\220/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/3.68-\346\226\207\346\234\254\345\267\246\345\217\263\345\257\271\351\275\220/solution.md" index 6bce772aa01f6888c08538d154f38b7f504ab351..b45bd04f1d44f5b95bd8ede922677700a2c18696 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/3.68-\346\226\207\346\234\254\345\267\246\345\217\263\345\257\271\351\275\220/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/3.68-\346\226\207\346\234\254\345\267\246\345\217\263\345\257\271\351\275\220/solution.md" @@ -69,14 +69,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -93,7 +93,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -162,7 +162,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -222,7 +222,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -278,7 +278,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/4.135-\345\210\206\345\217\221\347\263\226\346\236\234/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/4.135-\345\210\206\345\217\221\347\263\226\346\236\234/solution.md" index 1a27005c8acfb6e276a4534a58c8d251012a095c..5c3a5d6bd5f51f9248fdf0dceb414d25bc838821 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/4.135-\345\210\206\345\217\221\347\263\226\346\236\234/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/4.135-\345\210\206\345\217\221\347\263\226\346\236\234/solution.md" @@ -35,14 +35,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -56,7 +56,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -83,7 +83,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -110,7 +110,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -163,7 +163,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/5.55-\350\267\263\350\267\203\346\270\270\346\210\217/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/5.55-\350\267\263\350\267\203\346\270\270\346\210\217/solution.md" index 54591a913fa04bbe7983a6a36b3f3e936087e881..daf2207ae235e6c2a10bc1272ff0b74c63a6e207 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/5.55-\350\267\263\350\267\203\346\270\270\346\210\217/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/5.55-\350\267\263\350\267\203\346\270\270\346\210\217/solution.md" @@ -7,14 +7,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -29,7 +29,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -51,7 +51,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -72,7 +72,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -95,7 +95,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/6.134-\345\212\240\346\262\271\347\253\231/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/6.134-\345\212\240\346\262\271\347\253\231/solution.md" index 9c26a9bd552af4f925cb1a4e390421182e48c8bd..9f0b6f95c569519d3ae83d8fb3f93f5ed8960ad4 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/6.134-\345\212\240\346\262\271\347\253\231/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/6.134-\345\212\240\346\262\271\347\253\231/solution.md" @@ -53,14 +53,14 @@ cost = [3,4,3] ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -76,7 +76,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -122,7 +122,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -161,7 +161,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -185,7 +185,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/7.179-\346\234\200\345\244\247\346\225\260/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/7.179-\346\234\200\345\244\247\346\225\260/solution.md" index dc43b97c222833d809e4de2cb1b30c5178ab349c..d4779f09dccc1cf66f9924b969f3119288762d8b 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/7.179-\346\234\200\345\244\247\346\225\260/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/7.179-\346\234\200\345\244\247\346\225\260/solution.md" @@ -48,14 +48,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -69,7 +69,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -99,7 +99,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -119,7 +119,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -139,7 +139,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/8.316-\345\216\273\351\231\244\351\207\215\345\244\215\345\255\227\346\257\215/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/8.316-\345\216\273\351\231\244\351\207\215\345\244\215\345\255\227\346\257\215/solution.md" index ae5adef0130e658440fdc3e0dae810357f08b9fe..9ba89f134ac44388ff359459a8bc32415457eb58 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/8.316-\345\216\273\351\231\244\351\207\215\345\244\215\345\255\227\346\257\215/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/8.316-\345\216\273\351\231\244\351\207\215\345\244\215\345\255\227\346\257\215/solution.md" @@ -34,14 +34,14 @@ ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -55,7 +55,7 @@ int main() ## 答案 -```cpp +```c class Solution { @@ -98,7 +98,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -151,7 +151,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -180,7 +180,7 @@ public: ### C -```cpp +```c class Solution { diff --git "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/9.321-\346\213\274\346\216\245\346\234\200\345\244\247\346\225\260/solution.md" "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/9.321-\346\213\274\346\216\245\346\234\200\345\244\247\346\225\260/solution.md" index 35fe347933c2679e16ac66d6790aa4cbe6c3c189..9744e10147a246fc9453fa685bbb8d46edc66536 100644 --- "a/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/9.321-\346\213\274\346\216\245\346\234\200\345\244\247\346\225\260/solution.md" +++ "b/data/3.\347\256\227\346\263\225\351\253\230\351\230\266/8.leetcode-\350\264\252\345\277\203/9.321-\346\213\274\346\216\245\346\234\200\345\244\247\346\225\260/solution.md" @@ -39,14 +39,14 @@ k = 3 ### before -```cpp +```c #include using namespace std; ``` ### after -```cpp +```c int main() { Solution sol; @@ -63,7 +63,7 @@ int main() ## 答案 -```cpp +```c class Solution { public: @@ -120,7 +120,7 @@ public: ### A -```cpp +```c class Solution { public: @@ -243,7 +243,7 @@ public: ### B -```cpp +```c class Solution { public: @@ -299,7 +299,7 @@ public: ### C -```cpp +```c class Solution { public: diff --git a/leetcode_helper.py b/leetcode_helper.py index d90216cf708014985c72f0e9306327f7f28002d7..c72ff1add192cd45cc72d29628532435e3098811 100644 --- a/leetcode_helper.py +++ b/leetcode_helper.py @@ -619,18 +619,7 @@ def fixbug_for_md(): solution_md_path = os.path.join(tem_dir, 'solution.md') with open(solution_md_path, 'r') as f: solution_md_data = f.read() - if solution_md_data.find('\n\n### after') == -1: - solution_md_data = solution_md_data.replace('### after', '\n### after') - if solution_md_data.find('### A\n\n```cpp') == -1: - solution_md_data = solution_md_data.replace('### A\n```cpp', '### A\n\n```cpp') - if solution_md_data.find('### B\n\n```cpp') == -1: - solution_md_data = solution_md_data.replace('### B\n```cpp', '### B\n\n```cpp') - if solution_md_data.find('### C\n\n```cpp') == -1: - solution_md_data = solution_md_data.replace('### C\n```cpp', '### C\n\n```cpp') - if solution_md_data.find('```\n\n**') == -1: - solution_md_data = solution_md_data.replace('```\n**', '```\n\n**') - if solution_md_data.find('**\n\n```') == -1: - solution_md_data = solution_md_data.replace('**\n```', '**\n\n```') + solution_md_data = solution_md_data.replace('```cpp', '```c') with open(solution_md_path, 'w') as f: f.write(solution_md_data)