From 2ba063b011e7409daf285534ad27bff76ed72b66 Mon Sep 17 00:00:00 2001 From: Yang Libin Date: Sun, 2 Jul 2023 10:09:46 +0000 Subject: [PATCH] feat: add solutions to lc problems: No.2760~2763 * No.2760.Longest Even Odd Subarray With Threshold * No.2761.Prime Pairs With Target Sum * No.2762.Continuous Subarrays * No.2763.Sum of Imbalance Numbers of All Subarrays --- .../README.md | 4 ++-- .../README_EN.md | 4 ++-- .../Solution.cpp | 0 .../Solution.go | 0 .../Solution.java | 0 .../Solution.py | 0 .../Solution.ts | 0 .../2761.Prime Pairs With Target Sum}/README.md | 4 ++-- .../2761.Prime Pairs With Target Sum}/README_EN.md | 4 ++-- .../2761.Prime Pairs With Target Sum}/Solution.cpp | 0 .../2761.Prime Pairs With Target Sum}/Solution.go | 0 .../2761.Prime Pairs With Target Sum}/Solution.java | 0 .../2761.Prime Pairs With Target Sum}/Solution.py | 0 .../2761.Prime Pairs With Target Sum}/Solution.ts | 0 .../2762.Continuous Subarrays}/README.md | 4 ++-- .../2762.Continuous Subarrays}/README_EN.md | 4 ++-- .../2762.Continuous Subarrays}/Solution.cpp | 0 .../2762.Continuous Subarrays}/Solution.go | 0 .../2762.Continuous Subarrays}/Solution.java | 0 .../2762.Continuous Subarrays}/Solution.py | 0 .../README.md | 4 ++-- .../README_EN.md | 4 ++-- .../Solution.cpp | 0 .../Solution.java | 0 .../Solution.py | 0 solution/CONTEST_README.md | 8 ++++---- solution/CONTEST_README_EN.md | 8 ++++---- solution/README.md | 8 ++++---- solution/README_EN.md | 8 ++++---- solution/summary.md | 12 ++++-------- solution/summary_en.md | 12 ++++-------- 31 files changed, 40 insertions(+), 48 deletions(-) rename solution/{6900-6999/6909.Longest Even Odd Subarray With Threshold => 2700-2799/2760.Longest Even Odd Subarray With Threshold}/README.md (97%) rename solution/{6900-6999/6909.Longest Even Odd Subarray With Threshold => 2700-2799/2760.Longest Even Odd Subarray With Threshold}/README_EN.md (97%) rename solution/{6900-6999/6909.Longest Even Odd Subarray With Threshold => 2700-2799/2760.Longest Even Odd Subarray With Threshold}/Solution.cpp (100%) rename solution/{6900-6999/6909.Longest Even Odd Subarray With Threshold => 2700-2799/2760.Longest Even Odd Subarray With Threshold}/Solution.go (100%) rename solution/{6900-6999/6909.Longest Even Odd Subarray With Threshold => 2700-2799/2760.Longest Even Odd Subarray With Threshold}/Solution.java (100%) rename solution/{6900-6999/6909.Longest Even Odd Subarray With Threshold => 2700-2799/2760.Longest Even Odd Subarray With Threshold}/Solution.py (100%) rename solution/{6900-6999/6909.Longest Even Odd Subarray With Threshold => 2700-2799/2760.Longest Even Odd Subarray With Threshold}/Solution.ts (100%) rename solution/{6900-6999/6916.Prime Pairs With Target Sum => 2700-2799/2761.Prime Pairs With Target Sum}/README.md (97%) rename solution/{6900-6999/6916.Prime Pairs With Target Sum => 2700-2799/2761.Prime Pairs With Target Sum}/README_EN.md (97%) rename solution/{6900-6999/6916.Prime Pairs With Target Sum => 2700-2799/2761.Prime Pairs With Target Sum}/Solution.cpp (100%) rename solution/{6900-6999/6916.Prime Pairs With Target Sum => 2700-2799/2761.Prime Pairs With Target Sum}/Solution.go (100%) rename solution/{6900-6999/6916.Prime Pairs With Target Sum => 2700-2799/2761.Prime Pairs With Target Sum}/Solution.java (100%) rename solution/{6900-6999/6916.Prime Pairs With Target Sum => 2700-2799/2761.Prime Pairs With Target Sum}/Solution.py (100%) rename solution/{6900-6999/6916.Prime Pairs With Target Sum => 2700-2799/2761.Prime Pairs With Target Sum}/Solution.ts (100%) rename solution/{6900-6999/6911.Continuous Subarrays => 2700-2799/2762.Continuous Subarrays}/README.md (97%) rename solution/{6900-6999/6911.Continuous Subarrays => 2700-2799/2762.Continuous Subarrays}/README_EN.md (96%) rename solution/{6900-6999/6911.Continuous Subarrays => 2700-2799/2762.Continuous Subarrays}/Solution.cpp (100%) rename solution/{6900-6999/6911.Continuous Subarrays => 2700-2799/2762.Continuous Subarrays}/Solution.go (100%) rename solution/{6900-6999/6911.Continuous Subarrays => 2700-2799/2762.Continuous Subarrays}/Solution.java (100%) rename solution/{6900-6999/6911.Continuous Subarrays => 2700-2799/2762.Continuous Subarrays}/Solution.py (100%) rename solution/{6800-6899/6894.Sum of Imbalance Numbers of All Subarrays => 2700-2799/2763.Sum of Imbalance Numbers of All Subarrays}/README.md (97%) rename solution/{6800-6899/6894.Sum of Imbalance Numbers of All Subarrays => 2700-2799/2763.Sum of Imbalance Numbers of All Subarrays}/README_EN.md (97%) rename solution/{6800-6899/6894.Sum of Imbalance Numbers of All Subarrays => 2700-2799/2763.Sum of Imbalance Numbers of All Subarrays}/Solution.cpp (100%) rename solution/{6800-6899/6894.Sum of Imbalance Numbers of All Subarrays => 2700-2799/2763.Sum of Imbalance Numbers of All Subarrays}/Solution.java (100%) rename solution/{6800-6899/6894.Sum of Imbalance Numbers of All Subarrays => 2700-2799/2763.Sum of Imbalance Numbers of All Subarrays}/Solution.py (100%) diff --git a/solution/6900-6999/6909.Longest Even Odd Subarray With Threshold/README.md b/solution/2700-2799/2760.Longest Even Odd Subarray With Threshold/README.md similarity index 97% rename from solution/6900-6999/6909.Longest Even Odd Subarray With Threshold/README.md rename to solution/2700-2799/2760.Longest Even Odd Subarray With Threshold/README.md index bd2090136bf71..c2105e112d26a 100644 --- a/solution/6900-6999/6909.Longest Even Odd Subarray With Threshold/README.md +++ b/solution/2700-2799/2760.Longest Even Odd Subarray With Threshold/README.md @@ -1,6 +1,6 @@ -# [6909. 最长奇偶子数组](https://leetcode.cn/problems/longest-even-odd-subarray-with-threshold) +# [2760. 最长奇偶子数组](https://leetcode.cn/problems/longest-even-odd-subarray-with-threshold) -[English Version](/solution/6900-6999/6909.Longest%20Even%20Odd%20Subarray%20With%20Threshold/README_EN.md) +[English Version](/solution/2700-2799/2760.Longest%20Even%20Odd%20Subarray%20With%20Threshold/README_EN.md) ## 题目描述 diff --git a/solution/6900-6999/6909.Longest Even Odd Subarray With Threshold/README_EN.md b/solution/2700-2799/2760.Longest Even Odd Subarray With Threshold/README_EN.md similarity index 97% rename from solution/6900-6999/6909.Longest Even Odd Subarray With Threshold/README_EN.md rename to solution/2700-2799/2760.Longest Even Odd Subarray With Threshold/README_EN.md index 41f629c2bbfbf..65af4915874d8 100644 --- a/solution/6900-6999/6909.Longest Even Odd Subarray With Threshold/README_EN.md +++ b/solution/2700-2799/2760.Longest Even Odd Subarray With Threshold/README_EN.md @@ -1,6 +1,6 @@ -# [6909. Longest Even Odd Subarray With Threshold](https://leetcode.com/problems/longest-even-odd-subarray-with-threshold) +# [2760. Longest Even Odd Subarray With Threshold](https://leetcode.com/problems/longest-even-odd-subarray-with-threshold) -[中文文档](/solution/6900-6999/6909.Longest%20Even%20Odd%20Subarray%20With%20Threshold/README.md) +[中文文档](/solution/2700-2799/2760.Longest%20Even%20Odd%20Subarray%20With%20Threshold/README.md) ## Description diff --git a/solution/6900-6999/6909.Longest Even Odd Subarray With Threshold/Solution.cpp b/solution/2700-2799/2760.Longest Even Odd Subarray With Threshold/Solution.cpp similarity index 100% rename from solution/6900-6999/6909.Longest Even Odd Subarray With Threshold/Solution.cpp rename to solution/2700-2799/2760.Longest Even Odd Subarray With Threshold/Solution.cpp diff --git a/solution/6900-6999/6909.Longest Even Odd Subarray With Threshold/Solution.go b/solution/2700-2799/2760.Longest Even Odd Subarray With Threshold/Solution.go similarity index 100% rename from solution/6900-6999/6909.Longest Even Odd Subarray With Threshold/Solution.go rename to solution/2700-2799/2760.Longest Even Odd Subarray With Threshold/Solution.go diff --git a/solution/6900-6999/6909.Longest Even Odd Subarray With Threshold/Solution.java b/solution/2700-2799/2760.Longest Even Odd Subarray With Threshold/Solution.java similarity index 100% rename from solution/6900-6999/6909.Longest Even Odd Subarray With Threshold/Solution.java rename to solution/2700-2799/2760.Longest Even Odd Subarray With Threshold/Solution.java diff --git a/solution/6900-6999/6909.Longest Even Odd Subarray With Threshold/Solution.py b/solution/2700-2799/2760.Longest Even Odd Subarray With Threshold/Solution.py similarity index 100% rename from solution/6900-6999/6909.Longest Even Odd Subarray With Threshold/Solution.py rename to solution/2700-2799/2760.Longest Even Odd Subarray With Threshold/Solution.py diff --git a/solution/6900-6999/6909.Longest Even Odd Subarray With Threshold/Solution.ts b/solution/2700-2799/2760.Longest Even Odd Subarray With Threshold/Solution.ts similarity index 100% rename from solution/6900-6999/6909.Longest Even Odd Subarray With Threshold/Solution.ts rename to solution/2700-2799/2760.Longest Even Odd Subarray With Threshold/Solution.ts diff --git a/solution/6900-6999/6916.Prime Pairs With Target Sum/README.md b/solution/2700-2799/2761.Prime Pairs With Target Sum/README.md similarity index 97% rename from solution/6900-6999/6916.Prime Pairs With Target Sum/README.md rename to solution/2700-2799/2761.Prime Pairs With Target Sum/README.md index c46039c095c14..d6e831ad63c47 100644 --- a/solution/6900-6999/6916.Prime Pairs With Target Sum/README.md +++ b/solution/2700-2799/2761.Prime Pairs With Target Sum/README.md @@ -1,6 +1,6 @@ -# [6916. 和等于目标值的质数对](https://leetcode.cn/problems/prime-pairs-with-target-sum) +# [2761. 和等于目标值的质数对](https://leetcode.cn/problems/prime-pairs-with-target-sum) -[English Version](/solution/6900-6999/6916.Prime%20Pairs%20With%20Target%20Sum/README_EN.md) +[English Version](/solution/2700-2799/2761.Prime%20Pairs%20With%20Target%20Sum/README_EN.md) ## 题目描述 diff --git a/solution/6900-6999/6916.Prime Pairs With Target Sum/README_EN.md b/solution/2700-2799/2761.Prime Pairs With Target Sum/README_EN.md similarity index 97% rename from solution/6900-6999/6916.Prime Pairs With Target Sum/README_EN.md rename to solution/2700-2799/2761.Prime Pairs With Target Sum/README_EN.md index 784fd5f85890c..30b9b94808675 100644 --- a/solution/6900-6999/6916.Prime Pairs With Target Sum/README_EN.md +++ b/solution/2700-2799/2761.Prime Pairs With Target Sum/README_EN.md @@ -1,6 +1,6 @@ -# [6916. Prime Pairs With Target Sum](https://leetcode.com/problems/prime-pairs-with-target-sum) +# [2761. Prime Pairs With Target Sum](https://leetcode.com/problems/prime-pairs-with-target-sum) -[中文文档](/solution/6900-6999/6916.Prime%20Pairs%20With%20Target%20Sum/README.md) +[中文文档](/solution/2700-2799/2761.Prime%20Pairs%20With%20Target%20Sum/README.md) ## Description diff --git a/solution/6900-6999/6916.Prime Pairs With Target Sum/Solution.cpp b/solution/2700-2799/2761.Prime Pairs With Target Sum/Solution.cpp similarity index 100% rename from solution/6900-6999/6916.Prime Pairs With Target Sum/Solution.cpp rename to solution/2700-2799/2761.Prime Pairs With Target Sum/Solution.cpp diff --git a/solution/6900-6999/6916.Prime Pairs With Target Sum/Solution.go b/solution/2700-2799/2761.Prime Pairs With Target Sum/Solution.go similarity index 100% rename from solution/6900-6999/6916.Prime Pairs With Target Sum/Solution.go rename to solution/2700-2799/2761.Prime Pairs With Target Sum/Solution.go diff --git a/solution/6900-6999/6916.Prime Pairs With Target Sum/Solution.java b/solution/2700-2799/2761.Prime Pairs With Target Sum/Solution.java similarity index 100% rename from solution/6900-6999/6916.Prime Pairs With Target Sum/Solution.java rename to solution/2700-2799/2761.Prime Pairs With Target Sum/Solution.java diff --git a/solution/6900-6999/6916.Prime Pairs With Target Sum/Solution.py b/solution/2700-2799/2761.Prime Pairs With Target Sum/Solution.py similarity index 100% rename from solution/6900-6999/6916.Prime Pairs With Target Sum/Solution.py rename to solution/2700-2799/2761.Prime Pairs With Target Sum/Solution.py diff --git a/solution/6900-6999/6916.Prime Pairs With Target Sum/Solution.ts b/solution/2700-2799/2761.Prime Pairs With Target Sum/Solution.ts similarity index 100% rename from solution/6900-6999/6916.Prime Pairs With Target Sum/Solution.ts rename to solution/2700-2799/2761.Prime Pairs With Target Sum/Solution.ts diff --git a/solution/6900-6999/6911.Continuous Subarrays/README.md b/solution/2700-2799/2762.Continuous Subarrays/README.md similarity index 97% rename from solution/6900-6999/6911.Continuous Subarrays/README.md rename to solution/2700-2799/2762.Continuous Subarrays/README.md index f68a29c361058..f7381d800dd5d 100644 --- a/solution/6900-6999/6911.Continuous Subarrays/README.md +++ b/solution/2700-2799/2762.Continuous Subarrays/README.md @@ -1,6 +1,6 @@ -# [6911. 不间断子数组](https://leetcode.cn/problems/continuous-subarrays) +# [2762. 不间断子数组](https://leetcode.cn/problems/continuous-subarrays) -[English Version](/solution/6900-6999/6911.Continuous%20Subarrays/README_EN.md) +[English Version](/solution/2700-2799/2762.Continuous%20Subarrays/README_EN.md) ## 题目描述 diff --git a/solution/6900-6999/6911.Continuous Subarrays/README_EN.md b/solution/2700-2799/2762.Continuous Subarrays/README_EN.md similarity index 96% rename from solution/6900-6999/6911.Continuous Subarrays/README_EN.md rename to solution/2700-2799/2762.Continuous Subarrays/README_EN.md index e5b6564d75463..338310737be32 100644 --- a/solution/6900-6999/6911.Continuous Subarrays/README_EN.md +++ b/solution/2700-2799/2762.Continuous Subarrays/README_EN.md @@ -1,6 +1,6 @@ -# [6911. Continuous Subarrays](https://leetcode.com/problems/continuous-subarrays) +# [2762. Continuous Subarrays](https://leetcode.com/problems/continuous-subarrays) -[中文文档](/solution/6900-6999/6911.Continuous%20Subarrays/README.md) +[中文文档](/solution/2700-2799/2762.Continuous%20Subarrays/README.md) ## Description diff --git a/solution/6900-6999/6911.Continuous Subarrays/Solution.cpp b/solution/2700-2799/2762.Continuous Subarrays/Solution.cpp similarity index 100% rename from solution/6900-6999/6911.Continuous Subarrays/Solution.cpp rename to solution/2700-2799/2762.Continuous Subarrays/Solution.cpp diff --git a/solution/6900-6999/6911.Continuous Subarrays/Solution.go b/solution/2700-2799/2762.Continuous Subarrays/Solution.go similarity index 100% rename from solution/6900-6999/6911.Continuous Subarrays/Solution.go rename to solution/2700-2799/2762.Continuous Subarrays/Solution.go diff --git a/solution/6900-6999/6911.Continuous Subarrays/Solution.java b/solution/2700-2799/2762.Continuous Subarrays/Solution.java similarity index 100% rename from solution/6900-6999/6911.Continuous Subarrays/Solution.java rename to solution/2700-2799/2762.Continuous Subarrays/Solution.java diff --git a/solution/6900-6999/6911.Continuous Subarrays/Solution.py b/solution/2700-2799/2762.Continuous Subarrays/Solution.py similarity index 100% rename from solution/6900-6999/6911.Continuous Subarrays/Solution.py rename to solution/2700-2799/2762.Continuous Subarrays/Solution.py diff --git a/solution/6800-6899/6894.Sum of Imbalance Numbers of All Subarrays/README.md b/solution/2700-2799/2763.Sum of Imbalance Numbers of All Subarrays/README.md similarity index 97% rename from solution/6800-6899/6894.Sum of Imbalance Numbers of All Subarrays/README.md rename to solution/2700-2799/2763.Sum of Imbalance Numbers of All Subarrays/README.md index 61966569286e3..04acf1d23ace2 100644 --- a/solution/6800-6899/6894.Sum of Imbalance Numbers of All Subarrays/README.md +++ b/solution/2700-2799/2763.Sum of Imbalance Numbers of All Subarrays/README.md @@ -1,6 +1,6 @@ -# [6894. 所有子数组中不平衡数字之和](https://leetcode.cn/problems/sum-of-imbalance-numbers-of-all-subarrays) +# [2763. 所有子数组中不平衡数字之和](https://leetcode.cn/problems/sum-of-imbalance-numbers-of-all-subarrays) -[English Version](/solution/6800-6899/6894.Sum%20of%20Imbalance%20Numbers%20of%20All%20Subarrays/README_EN.md) +[English Version](/solution/2700-2799/2763.Sum%20of%20Imbalance%20Numbers%20of%20All%20Subarrays/README_EN.md) ## 题目描述 diff --git a/solution/6800-6899/6894.Sum of Imbalance Numbers of All Subarrays/README_EN.md b/solution/2700-2799/2763.Sum of Imbalance Numbers of All Subarrays/README_EN.md similarity index 97% rename from solution/6800-6899/6894.Sum of Imbalance Numbers of All Subarrays/README_EN.md rename to solution/2700-2799/2763.Sum of Imbalance Numbers of All Subarrays/README_EN.md index f645af9fed736..ddb5cb07a2590 100644 --- a/solution/6800-6899/6894.Sum of Imbalance Numbers of All Subarrays/README_EN.md +++ b/solution/2700-2799/2763.Sum of Imbalance Numbers of All Subarrays/README_EN.md @@ -1,6 +1,6 @@ -# [6894. Sum of Imbalance Numbers of All Subarrays](https://leetcode.com/problems/sum-of-imbalance-numbers-of-all-subarrays) +# [2763. Sum of Imbalance Numbers of All Subarrays](https://leetcode.com/problems/sum-of-imbalance-numbers-of-all-subarrays) -[中文文档](/solution/6800-6899/6894.Sum%20of%20Imbalance%20Numbers%20of%20All%20Subarrays/README.md) +[中文文档](/solution/2700-2799/2763.Sum%20of%20Imbalance%20Numbers%20of%20All%20Subarrays/README.md) ## Description diff --git a/solution/6800-6899/6894.Sum of Imbalance Numbers of All Subarrays/Solution.cpp b/solution/2700-2799/2763.Sum of Imbalance Numbers of All Subarrays/Solution.cpp similarity index 100% rename from solution/6800-6899/6894.Sum of Imbalance Numbers of All Subarrays/Solution.cpp rename to solution/2700-2799/2763.Sum of Imbalance Numbers of All Subarrays/Solution.cpp diff --git a/solution/6800-6899/6894.Sum of Imbalance Numbers of All Subarrays/Solution.java b/solution/2700-2799/2763.Sum of Imbalance Numbers of All Subarrays/Solution.java similarity index 100% rename from solution/6800-6899/6894.Sum of Imbalance Numbers of All Subarrays/Solution.java rename to solution/2700-2799/2763.Sum of Imbalance Numbers of All Subarrays/Solution.java diff --git a/solution/6800-6899/6894.Sum of Imbalance Numbers of All Subarrays/Solution.py b/solution/2700-2799/2763.Sum of Imbalance Numbers of All Subarrays/Solution.py similarity index 100% rename from solution/6800-6899/6894.Sum of Imbalance Numbers of All Subarrays/Solution.py rename to solution/2700-2799/2763.Sum of Imbalance Numbers of All Subarrays/Solution.py diff --git a/solution/CONTEST_README.md b/solution/CONTEST_README.md index 5066a7927a42b..1af461a28e4b4 100644 --- a/solution/CONTEST_README.md +++ b/solution/CONTEST_README.md @@ -24,10 +24,10 @@ #### 第 352 场周赛(2023-07-02 10:30, 90 分钟) 参赛人数 3437 -- [6909. 最长奇偶子数组](/solution/6900-6999/6909.Longest%20Even%20Odd%20Subarray%20With%20Threshold/README.md) -- [6916. 和等于目标值的质数对](/solution/6900-6999/6916.Prime%20Pairs%20With%20Target%20Sum/README.md) -- [6911. 不间断子数组](/solution/6900-6999/6911.Continuous%20Subarrays/README.md) -- [6894. 所有子数组中不平衡数字之和](/solution/6800-6899/6894.Sum%20of%20Imbalance%20Numbers%20of%20All%20Subarrays/README.md) +- [2760. 最长奇偶子数组](/solution/2700-2799/2760.Longest%20Even%20Odd%20Subarray%20With%20Threshold/README.md) +- [2761. 和等于目标值的质数对](/solution/2700-2799/2761.Prime%20Pairs%20With%20Target%20Sum/README.md) +- [2762. 不间断子数组](/solution/2700-2799/2762.Continuous%20Subarrays/README.md) +- [2763. 所有子数组中不平衡数字之和](/solution/2700-2799/2763.Sum%20of%20Imbalance%20Numbers%20of%20All%20Subarrays/README.md) #### 第 351 场周赛(2023-06-25 10:30, 90 分钟) 参赛人数 2471 diff --git a/solution/CONTEST_README_EN.md b/solution/CONTEST_README_EN.md index 40201eed60310..b1d2ffc8e885a 100644 --- a/solution/CONTEST_README_EN.md +++ b/solution/CONTEST_README_EN.md @@ -27,10 +27,10 @@ Get your rating changes right after the completion of LeetCode contests, https:/ #### Weekly Contest 352 -- [6909. Longest Even Odd Subarray With Threshold](/solution/6900-6999/6909.Longest%20Even%20Odd%20Subarray%20With%20Threshold/README_EN.md) -- [6916. Prime Pairs With Target Sum](/solution/6900-6999/6916.Prime%20Pairs%20With%20Target%20Sum/README_EN.md) -- [6911. Continuous Subarrays](/solution/6900-6999/6911.Continuous%20Subarrays/README_EN.md) -- [6894. Sum of Imbalance Numbers of All Subarrays](/solution/6800-6899/6894.Sum%20of%20Imbalance%20Numbers%20of%20All%20Subarrays/README_EN.md) +- [2760. Longest Even Odd Subarray With Threshold](/solution/2700-2799/2760.Longest%20Even%20Odd%20Subarray%20With%20Threshold/README_EN.md) +- [2761. Prime Pairs With Target Sum](/solution/2700-2799/2761.Prime%20Pairs%20With%20Target%20Sum/README_EN.md) +- [2762. Continuous Subarrays](/solution/2700-2799/2762.Continuous%20Subarrays/README_EN.md) +- [2763. Sum of Imbalance Numbers of All Subarrays](/solution/2700-2799/2763.Sum%20of%20Imbalance%20Numbers%20of%20All%20Subarrays/README_EN.md) #### Weekly Contest 351 diff --git a/solution/README.md b/solution/README.md index 1c25250889282..775fb7cf65be0 100644 --- a/solution/README.md +++ b/solution/README.md @@ -2770,10 +2770,10 @@ | 2757 | [Generate Circular Array Values](/solution/2700-2799/2757.Generate%20Circular%20Array%20Values/README.md) | | 中等 | 🔒 | | 2758 | [Next Day](/solution/2700-2799/2758.Next%20Day/README.md) | | 简单 | 🔒 | | 2759 | [Convert JSON String to Object](/solution/2700-2799/2759.Convert%20JSON%20String%20to%20Object/README.md) | | 困难 | 🔒 | -| 6894 | [所有子数组中不平衡数字之和](/solution/6800-6899/6894.Sum%20of%20Imbalance%20Numbers%20of%20All%20Subarrays/README.md) | | 困难 | 第 352 场周赛 | -| 6909 | [最长奇偶子数组](/solution/6900-6999/6909.Longest%20Even%20Odd%20Subarray%20With%20Threshold/README.md) | | 简单 | 第 352 场周赛 | -| 6911 | [不间断子数组](/solution/6900-6999/6911.Continuous%20Subarrays/README.md) | | 中等 | 第 352 场周赛 | -| 6916 | [和等于目标值的质数对](/solution/6900-6999/6916.Prime%20Pairs%20With%20Target%20Sum/README.md) | | 中等 | 第 352 场周赛 | +| 2760 | [最长奇偶子数组](/solution/2700-2799/2760.Longest%20Even%20Odd%20Subarray%20With%20Threshold/README.md) | | 简单 | 第 352 场周赛 | +| 2761 | [和等于目标值的质数对](/solution/2700-2799/2761.Prime%20Pairs%20With%20Target%20Sum/README.md) | | 中等 | 第 352 场周赛 | +| 2762 | [不间断子数组](/solution/2700-2799/2762.Continuous%20Subarrays/README.md) | | 中等 | 第 352 场周赛 | +| 2763 | [所有子数组中不平衡数字之和](/solution/2700-2799/2763.Sum%20of%20Imbalance%20Numbers%20of%20All%20Subarrays/README.md) | | 困难 | 第 352 场周赛 | ## 版权 diff --git a/solution/README_EN.md b/solution/README_EN.md index d08891b89c5de..123abe7262e0a 100644 --- a/solution/README_EN.md +++ b/solution/README_EN.md @@ -2768,10 +2768,10 @@ Press Control+F(or Command+F on the | 2757 | [Generate Circular Array Values](/solution/2700-2799/2757.Generate%20Circular%20Array%20Values/README_EN.md) | | Medium | 🔒 | | 2758 | [Next Day](/solution/2700-2799/2758.Next%20Day/README_EN.md) | | Easy | 🔒 | | 2759 | [Convert JSON String to Object](/solution/2700-2799/2759.Convert%20JSON%20String%20to%20Object/README_EN.md) | | Hard | 🔒 | -| 6894 | [Sum of Imbalance Numbers of All Subarrays](/solution/6800-6899/6894.Sum%20of%20Imbalance%20Numbers%20of%20All%20Subarrays/README_EN.md) | | Hard | Weekly Contest 352 | -| 6909 | [Longest Even Odd Subarray With Threshold](/solution/6900-6999/6909.Longest%20Even%20Odd%20Subarray%20With%20Threshold/README_EN.md) | | Easy | Weekly Contest 352 | -| 6911 | [Continuous Subarrays](/solution/6900-6999/6911.Continuous%20Subarrays/README_EN.md) | | Medium | Weekly Contest 352 | -| 6916 | [Prime Pairs With Target Sum](/solution/6900-6999/6916.Prime%20Pairs%20With%20Target%20Sum/README_EN.md) | | Medium | Weekly Contest 352 | +| 2760 | [Longest Even Odd Subarray With Threshold](/solution/2700-2799/2760.Longest%20Even%20Odd%20Subarray%20With%20Threshold/README_EN.md) | | Easy | Weekly Contest 352 | +| 2761 | [Prime Pairs With Target Sum](/solution/2700-2799/2761.Prime%20Pairs%20With%20Target%20Sum/README_EN.md) | | Medium | Weekly Contest 352 | +| 2762 | [Continuous Subarrays](/solution/2700-2799/2762.Continuous%20Subarrays/README_EN.md) | | Medium | Weekly Contest 352 | +| 2763 | [Sum of Imbalance Numbers of All Subarrays](/solution/2700-2799/2763.Sum%20of%20Imbalance%20Numbers%20of%20All%20Subarrays/README_EN.md) | | Hard | Weekly Contest 352 | ## Copyright diff --git a/solution/summary.md b/solution/summary.md index d50ec041771e4..11aa325bf9f17 100644 --- a/solution/summary.md +++ b/solution/summary.md @@ -2813,11 +2813,7 @@ - [2757.Generate Circular Array Values](/solution/2700-2799/2757.Generate%20Circular%20Array%20Values/README.md) - [2758.Next Day](/solution/2700-2799/2758.Next%20Day/README.md) - [2759.Convert JSON String to Object](/solution/2700-2799/2759.Convert%20JSON%20String%20to%20Object/README.md) - -- 6800-6899 - - [6894.所有子数组中不平衡数字之和](/solution/6800-6899/6894.Sum%20of%20Imbalance%20Numbers%20of%20All%20Subarrays/README.md) - -- 6900-6999 - - [6909.最长奇偶子数组](/solution/6900-6999/6909.Longest%20Even%20Odd%20Subarray%20With%20Threshold/README.md) - - [6911.不间断子数组](/solution/6900-6999/6911.Continuous%20Subarrays/README.md) - - [6916.和等于目标值的质数对](/solution/6900-6999/6916.Prime%20Pairs%20With%20Target%20Sum/README.md) + - [2760.最长奇偶子数组](/solution/2700-2799/2760.Longest%20Even%20Odd%20Subarray%20With%20Threshold/README.md) + - [2761.和等于目标值的质数对](/solution/2700-2799/2761.Prime%20Pairs%20With%20Target%20Sum/README.md) + - [2762.不间断子数组](/solution/2700-2799/2762.Continuous%20Subarrays/README.md) + - [2763.所有子数组中不平衡数字之和](/solution/2700-2799/2763.Sum%20of%20Imbalance%20Numbers%20of%20All%20Subarrays/README.md) diff --git a/solution/summary_en.md b/solution/summary_en.md index 94ffa36f2c82f..7bce8de29c198 100644 --- a/solution/summary_en.md +++ b/solution/summary_en.md @@ -2813,11 +2813,7 @@ - [2757.Generate Circular Array Values](/solution/2700-2799/2757.Generate%20Circular%20Array%20Values/README_EN.md) - [2758.Next Day](/solution/2700-2799/2758.Next%20Day/README_EN.md) - [2759.Convert JSON String to Object](/solution/2700-2799/2759.Convert%20JSON%20String%20to%20Object/README_EN.md) - -- 6800-6899 - - [6894.Sum of Imbalance Numbers of All Subarrays](/solution/6800-6899/6894.Sum%20of%20Imbalance%20Numbers%20of%20All%20Subarrays/README_EN.md) - -- 6900-6999 - - [6909.Longest Even Odd Subarray With Threshold](/solution/6900-6999/6909.Longest%20Even%20Odd%20Subarray%20With%20Threshold/README_EN.md) - - [6911.Continuous Subarrays](/solution/6900-6999/6911.Continuous%20Subarrays/README_EN.md) - - [6916.Prime Pairs With Target Sum](/solution/6900-6999/6916.Prime%20Pairs%20With%20Target%20Sum/README_EN.md) + - [2760.Longest Even Odd Subarray With Threshold](/solution/2700-2799/2760.Longest%20Even%20Odd%20Subarray%20With%20Threshold/README_EN.md) + - [2761.Prime Pairs With Target Sum](/solution/2700-2799/2761.Prime%20Pairs%20With%20Target%20Sum/README_EN.md) + - [2762.Continuous Subarrays](/solution/2700-2799/2762.Continuous%20Subarrays/README_EN.md) + - [2763.Sum of Imbalance Numbers of All Subarrays](/solution/2700-2799/2763.Sum%20of%20Imbalance%20Numbers%20of%20All%20Subarrays/README_EN.md)