From 538ab740e6edb64f1ce97c572ed92c2dc1ba4177 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=83=B3=E8=A6=81=E5=90=83=E7=BE=8E=E9=A3=9F?= <13419817+want-to-eat-delicious-food@user.noreply.gitee.com> Date: Fri, 8 Sep 2023 12:38:22 +0000 Subject: [PATCH 01/20] add nszh. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 想要吃美食 <13419817+want-to-eat-delicious-food@user.noreply.gitee.com> --- nszh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 nszh diff --git a/nszh b/nszh new file mode 100644 index 00000000..18918d6b --- /dev/null +++ b/nszh @@ -0,0 +1,14 @@ +class Solution { +public: + vector twoSum(vector& nums, int target) { + unordered_map hash; + for (int i = 0; i < nums.size(); ++i) + { + if (hash.find(target - nums[i]) != hash.end()) + return { hash[target - nums[i]],i }; + else + hash[nums[i]] = i; + } + return {}; +} +}; \ No newline at end of file -- Gitee From 3bdeb38bb558754f6450f95089c80508106612f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=83=B3=E8=A6=81=E5=90=83=E7=BE=8E=E9=A3=9F?= <13419817+want-to-eat-delicious-food@user.noreply.gitee.com> Date: Sat, 9 Sep 2023 12:39:45 +0000 Subject: [PATCH 02/20] =?UTF-8?q?add=20=E5=92=8C.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 想要吃美食 <13419817+want-to-eat-delicious-food@user.noreply.gitee.com> --- "\345\222\214" | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 "\345\222\214" diff --git "a/\345\222\214" "b/\345\222\214" new file mode 100644 index 00000000..99aa38da --- /dev/null +++ "b/\345\222\214" @@ -0,0 +1,2 @@ + +struct ListN \ No newline at end of file -- Gitee From e87f91c308eaf5eba96a6ed60f280179c2f615b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=83=B3=E8=A6=81=E5=90=83=E7=BE=8E=E9=A3=9F?= <13419817+want-to-eat-delicious-food@user.noreply.gitee.com> Date: Sat, 9 Sep 2023 12:39:53 +0000 Subject: [PATCH 03/20] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20?= =?UTF-8?q?=E5=92=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- "\345\222\214" | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 "\345\222\214" diff --git "a/\345\222\214" "b/\345\222\214" deleted file mode 100644 index 99aa38da..00000000 --- "a/\345\222\214" +++ /dev/null @@ -1,2 +0,0 @@ - -struct ListN \ No newline at end of file -- Gitee From 194ff4c2d30765167e0cb34b884e5a7f583e787c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=83=B3=E8=A6=81=E5=90=83=E7=BE=8E=E9=A3=9F?= <13419817+want-to-eat-delicious-food@user.noreply.gitee.com> Date: Sun, 10 Sep 2023 06:35:04 +0000 Subject: [PATCH 04/20] =?UTF-8?q?=E6=96=B0=E5=BB=BA=202209040079chap1lc-1.?= =?UTF-8?q?cpp?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 2209040079chap1lc-1.cpp/.keep | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 2209040079chap1lc-1.cpp/.keep diff --git a/2209040079chap1lc-1.cpp/.keep b/2209040079chap1lc-1.cpp/.keep new file mode 100644 index 00000000..e69de29b -- Gitee From ed39bc701b411f6764c0589fbeb8510fcdb53a65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=83=B3=E8=A6=81=E5=90=83=E7=BE=8E=E9=A3=9F?= <13419817+want-to-eat-delicious-food@user.noreply.gitee.com> Date: Sun, 10 Sep 2023 06:35:34 +0000 Subject: [PATCH 05/20] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=2022?= =?UTF-8?q?09040079chap1lc-1.cpp/.keep?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 2209040079chap1lc-1.cpp/.keep | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 2209040079chap1lc-1.cpp/.keep diff --git a/2209040079chap1lc-1.cpp/.keep b/2209040079chap1lc-1.cpp/.keep deleted file mode 100644 index e69de29b..00000000 -- Gitee From ecc58decfa7011d78a5d3d759aa03f3f65a74f06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=83=B3=E8=A6=81=E5=90=83=E7=BE=8E=E9=A3=9F?= <13419817+want-to-eat-delicious-food@user.noreply.gitee.com> Date: Sun, 10 Sep 2023 06:38:29 +0000 Subject: [PATCH 06/20] =?UTF-8?q?=E6=96=B0=E5=BB=BA=202209040079=20chapter?= =?UTF-8?q?=201?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 2209040079 chapter 1/.keep | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 2209040079 chapter 1/.keep diff --git a/2209040079 chapter 1/.keep b/2209040079 chapter 1/.keep new file mode 100644 index 00000000..e69de29b -- Gitee From f5ecc361421bf853b83412b3163f4ec3c067cad2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=83=B3=E8=A6=81=E5=90=83=E7=BE=8E=E9=A3=9F?= <13419817+want-to-eat-delicious-food@user.noreply.gitee.com> Date: Sun, 10 Sep 2023 06:40:00 +0000 Subject: [PATCH 07/20] =?UTF-8?q?rename=202209040079=20chapter=201/.keep?= =?UTF-8?q?=20to=202209040079=20chapter=201/lc=20chapter1=20=E4=B8=A4?= =?UTF-8?q?=E6=95=B0=E4=B9=8B=E5=92=8C.cpp.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 想要吃美食 <13419817+want-to-eat-delicious-food@user.noreply.gitee.com> --- 2209040079 chapter 1/.keep | 0 ...70\244\346\225\260\344\271\213\345\222\214.cpp" | 14 ++++++++++++++ 2 files changed, 14 insertions(+) delete mode 100644 2209040079 chapter 1/.keep create mode 100644 "2209040079 chapter 1/lc chapter1 \344\270\244\346\225\260\344\271\213\345\222\214.cpp" diff --git a/2209040079 chapter 1/.keep b/2209040079 chapter 1/.keep deleted file mode 100644 index e69de29b..00000000 diff --git "a/2209040079 chapter 1/lc chapter1 \344\270\244\346\225\260\344\271\213\345\222\214.cpp" "b/2209040079 chapter 1/lc chapter1 \344\270\244\346\225\260\344\271\213\345\222\214.cpp" new file mode 100644 index 00000000..23acd262 --- /dev/null +++ "b/2209040079 chapter 1/lc chapter1 \344\270\244\346\225\260\344\271\213\345\222\214.cpp" @@ -0,0 +1,14 @@ +class Solution { +public: + vector twoSum(vector& nums, int target) { + unordered_map hash; + for (int i = 0; i < nums.size(); ++i) + { + if (hash.find(target - nums[i]) != hash.end()) + return { hash[target - nums[i]],i }; + else + hash[nums[i]] = i; + } + return {}; +} +}; \ No newline at end of file -- Gitee From 9942e095b4c2681c465f19a771af74e14b790eef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=83=B3=E8=A6=81=E5=90=83=E7=BE=8E=E9=A3=9F?= <13419817+want-to-eat-delicious-food@user.noreply.gitee.com> Date: Sun, 10 Sep 2023 07:12:16 +0000 Subject: [PATCH 08/20] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20ns?= =?UTF-8?q?zh?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nszh | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 nszh diff --git a/nszh b/nszh deleted file mode 100644 index 18918d6b..00000000 --- a/nszh +++ /dev/null @@ -1,14 +0,0 @@ -class Solution { -public: - vector twoSum(vector& nums, int target) { - unordered_map hash; - for (int i = 0; i < nums.size(); ++i) - { - if (hash.find(target - nums[i]) != hash.end()) - return { hash[target - nums[i]],i }; - else - hash[nums[i]] = i; - } - return {}; -} -}; \ No newline at end of file -- Gitee From 2593dc836e21c0fce65651a8d8f5d397643fcc8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=83=B3=E8=A6=81=E5=90=83=E7=BE=8E=E9=A3=9F?= <13419817+want-to-eat-delicious-food@user.noreply.gitee.com> Date: Sun, 10 Sep 2023 07:27:06 +0000 Subject: [PATCH 09/20] =?UTF-8?q?add=20=E4=B8=A4=E6=95=B0=E4=B9=8B?= =?UTF-8?q?=E5=92=8C.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 想要吃美食 <13419817+want-to-eat-delicious-food@user.noreply.gitee.com> --- "\344\270\244\346\225\260\344\271\213\345\222\214" | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 "\344\270\244\346\225\260\344\271\213\345\222\214" diff --git "a/\344\270\244\346\225\260\344\271\213\345\222\214" "b/\344\270\244\346\225\260\344\271\213\345\222\214" new file mode 100644 index 00000000..18918d6b --- /dev/null +++ "b/\344\270\244\346\225\260\344\271\213\345\222\214" @@ -0,0 +1,14 @@ +class Solution { +public: + vector twoSum(vector& nums, int target) { + unordered_map hash; + for (int i = 0; i < nums.size(); ++i) + { + if (hash.find(target - nums[i]) != hash.end()) + return { hash[target - nums[i]],i }; + else + hash[nums[i]] = i; + } + return {}; +} +}; \ No newline at end of file -- Gitee From 50a0e3fa63ac94838d7eb1559a552f8d76e62442 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=83=B3=E8=A6=81=E5=90=83=E7=BE=8E=E9=A3=9F?= <13419817+want-to-eat-delicious-food@user.noreply.gitee.com> Date: Sun, 10 Sep 2023 07:36:35 +0000 Subject: [PATCH 10/20] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20?= =?UTF-8?q?=E4=B8=A4=E6=95=B0=E4=B9=8B=E5=92=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- "\344\270\244\346\225\260\344\271\213\345\222\214" | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 "\344\270\244\346\225\260\344\271\213\345\222\214" diff --git "a/\344\270\244\346\225\260\344\271\213\345\222\214" "b/\344\270\244\346\225\260\344\271\213\345\222\214" deleted file mode 100644 index 18918d6b..00000000 --- "a/\344\270\244\346\225\260\344\271\213\345\222\214" +++ /dev/null @@ -1,14 +0,0 @@ -class Solution { -public: - vector twoSum(vector& nums, int target) { - unordered_map hash; - for (int i = 0; i < nums.size(); ++i) - { - if (hash.find(target - nums[i]) != hash.end()) - return { hash[target - nums[i]],i }; - else - hash[nums[i]] = i; - } - return {}; -} -}; \ No newline at end of file -- Gitee From 86bd0eb48b1b06ead8a275b6670f61d4fba50825 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=83=B3=E8=A6=81=E5=90=83=E7=BE=8E=E9=A3=9F?= <13419817+want-to-eat-delicious-food@user.noreply.gitee.com> Date: Mon, 11 Sep 2023 03:04:16 +0000 Subject: [PATCH 11/20] =?UTF-8?q?=E6=96=B0=E5=BB=BA=202209040079?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 2209040079 chapter 1/2209040079/.keep | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 2209040079 chapter 1/2209040079/.keep diff --git a/2209040079 chapter 1/2209040079/.keep b/2209040079 chapter 1/2209040079/.keep new file mode 100644 index 00000000..e69de29b -- Gitee From b62ae91db3991c692d5f3d35a4700207634d00ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=83=B3=E8=A6=81=E5=90=83=E7=BE=8E=E9=A3=9F?= <13419817+want-to-eat-delicious-food@user.noreply.gitee.com> Date: Mon, 11 Sep 2023 03:07:43 +0000 Subject: [PATCH 12/20] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=2022?= =?UTF-8?q?09040079=20chapter=201/2209040079/.keep?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 2209040079 chapter 1/2209040079/.keep | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 2209040079 chapter 1/2209040079/.keep diff --git a/2209040079 chapter 1/2209040079/.keep b/2209040079 chapter 1/2209040079/.keep deleted file mode 100644 index e69de29b..00000000 -- Gitee From 4321772eaca430d81dd71a5fdfe263dc0dcc20ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=83=B3=E8=A6=81=E5=90=83=E7=BE=8E=E9=A3=9F?= <13419817+want-to-eat-delicious-food@user.noreply.gitee.com> Date: Mon, 11 Sep 2023 04:20:56 +0000 Subject: [PATCH 13/20] =?UTF-8?q?=E6=96=B0=E5=BB=BA=202209040079?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 2209040079/.keep | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 2209040079/.keep diff --git a/2209040079/.keep b/2209040079/.keep new file mode 100644 index 00000000..e69de29b -- Gitee From 2a0521a0cf4d958ba325ed0a8cce86bef5674c14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=83=B3=E8=A6=81=E5=90=83=E7=BE=8E=E9=A3=9F?= <13419817+want-to-eat-delicious-food@user.noreply.gitee.com> Date: Mon, 11 Sep 2023 04:21:30 +0000 Subject: [PATCH 14/20] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=2022?= =?UTF-8?q?09040079/.keep?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 2209040079/.keep | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 2209040079/.keep diff --git a/2209040079/.keep b/2209040079/.keep deleted file mode 100644 index e69de29b..00000000 -- Gitee From ca425031e9d2b77071d6f7c710999152f458b1d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=83=B3=E8=A6=81=E5=90=83=E7=BE=8E=E9=A3=9F?= <13419817+want-to-eat-delicious-food@user.noreply.gitee.com> Date: Mon, 11 Sep 2023 04:21:46 +0000 Subject: [PATCH 15/20] =?UTF-8?q?=E6=96=B0=E5=BB=BA=202209040079?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 2209040079/.keep | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 2209040079/.keep diff --git a/2209040079/.keep b/2209040079/.keep new file mode 100644 index 00000000..e69de29b -- Gitee From 6a59d7c432cf84fce542490177cddded58a47742 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=83=B3=E8=A6=81=E5=90=83=E7=BE=8E=E9=A3=9F?= <13419817+want-to-eat-delicious-food@user.noreply.gitee.com> Date: Mon, 11 Sep 2023 04:22:49 +0000 Subject: [PATCH 16/20] =?UTF-8?q?=E6=96=B0=E5=BB=BA=20chapter=201?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 2209040079/chapter 1/.keep | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 2209040079/chapter 1/.keep diff --git a/2209040079/chapter 1/.keep b/2209040079/chapter 1/.keep new file mode 100644 index 00000000..e69de29b -- Gitee From 48be78b51c72ea2a8d9c68c83304eff5380fc29b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=83=B3=E8=A6=81=E5=90=83=E7=BE=8E=E9=A3=9F?= <13419817+want-to-eat-delicious-food@user.noreply.gitee.com> Date: Mon, 11 Sep 2023 04:25:04 +0000 Subject: [PATCH 17/20] =?UTF-8?q?add=202209040079/chapter=201/lc=20?= =?UTF-8?q?=E4=B8=A4=E6=95=B0=E4=B9=8B=E5=92=8C.cpp.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 想要吃美食 <13419817+want-to-eat-delicious-food@user.noreply.gitee.com> --- ...70\244\346\225\260\344\271\213\345\222\214.cpp" | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 "2209040079/chapter 1/lc \344\270\244\346\225\260\344\271\213\345\222\214.cpp" diff --git "a/2209040079/chapter 1/lc \344\270\244\346\225\260\344\271\213\345\222\214.cpp" "b/2209040079/chapter 1/lc \344\270\244\346\225\260\344\271\213\345\222\214.cpp" new file mode 100644 index 00000000..18918d6b --- /dev/null +++ "b/2209040079/chapter 1/lc \344\270\244\346\225\260\344\271\213\345\222\214.cpp" @@ -0,0 +1,14 @@ +class Solution { +public: + vector twoSum(vector& nums, int target) { + unordered_map hash; + for (int i = 0; i < nums.size(); ++i) + { + if (hash.find(target - nums[i]) != hash.end()) + return { hash[target - nums[i]],i }; + else + hash[nums[i]] = i; + } + return {}; +} +}; \ No newline at end of file -- Gitee From cf4bfac6ec67c5dd2067810e1266b1cc7986fc9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=83=B3=E8=A6=81=E5=90=83=E7=BE=8E=E9=A3=9F?= <13419817+want-to-eat-delicious-food@user.noreply.gitee.com> Date: Mon, 11 Sep 2023 04:35:11 +0000 Subject: [PATCH 18/20] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=2022?= =?UTF-8?q?09040079/chapter=201/lc=20=E4=B8=A4=E6=95=B0=E4=B9=8B=E5=92=8C.?= =?UTF-8?q?cpp?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...70\244\346\225\260\344\271\213\345\222\214.cpp" | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 "2209040079/chapter 1/lc \344\270\244\346\225\260\344\271\213\345\222\214.cpp" diff --git "a/2209040079/chapter 1/lc \344\270\244\346\225\260\344\271\213\345\222\214.cpp" "b/2209040079/chapter 1/lc \344\270\244\346\225\260\344\271\213\345\222\214.cpp" deleted file mode 100644 index 18918d6b..00000000 --- "a/2209040079/chapter 1/lc \344\270\244\346\225\260\344\271\213\345\222\214.cpp" +++ /dev/null @@ -1,14 +0,0 @@ -class Solution { -public: - vector twoSum(vector& nums, int target) { - unordered_map hash; - for (int i = 0; i < nums.size(); ++i) - { - if (hash.find(target - nums[i]) != hash.end()) - return { hash[target - nums[i]],i }; - else - hash[nums[i]] = i; - } - return {}; -} -}; \ No newline at end of file -- Gitee From 6a7c6f5e1480cad95f920013c57bc9efabf54a0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=83=B3=E8=A6=81=E5=90=83=E7=BE=8E=E9=A3=9F?= <13419817+want-to-eat-delicious-food@user.noreply.gitee.com> Date: Mon, 11 Sep 2023 04:35:19 +0000 Subject: [PATCH 19/20] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=2022?= =?UTF-8?q?09040079/chapter=201/.keep?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 2209040079/chapter 1/.keep | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 2209040079/chapter 1/.keep diff --git a/2209040079/chapter 1/.keep b/2209040079/chapter 1/.keep deleted file mode 100644 index e69de29b..00000000 -- Gitee From 368fe9132c56c13a22cc1d4ccd15524cc8f6d9ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=83=B3=E8=A6=81=E5=90=83=E7=BE=8E=E9=A3=9F?= <13419817+want-to-eat-delicious-food@user.noreply.gitee.com> Date: Mon, 11 Sep 2023 04:35:35 +0000 Subject: [PATCH 20/20] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=2022?= =?UTF-8?q?09040079/.keep?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 2209040079/.keep | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 2209040079/.keep diff --git a/2209040079/.keep b/2209040079/.keep deleted file mode 100644 index e69de29b..00000000 -- Gitee