1+ PS F:\OtherApps\Program\Git\Store\Store20_LeetCode> git pull origin master
2+ remote: Enumerating objects: 79, done.
3+ remote: Counting objects: 100% (36/36), done.
4+ remote: Compressing objects: 100% (20/20), done.
5+ remote: Total 79 (delta 21), reused 21 (delta 16), pack-reused 43 (from 1)
6+ Unpacking objects: 100% (79/79), 405.06 KiB | 52.00 KiB/s, done.
7+ From github.com:LetMeFly666/LeetCode
8+ * branch master -> FETCH_HEAD
9+ 8783deb45b0..0b5a1edae4c master -> origin/master
10+ Updating 8783deb45b0..0b5a1edae4c
11+ Fast-forward
12+ ...295-find-numbers-with-even-number-of-digits.cpp | 29 ++
13+ ...1295-find-numbers-with-even-number-of-digits.go | 19 +
14+ ...95-find-numbers-with-even-number-of-digits.java | 25 ++
15+ ...1295-find-numbers-with-even-number-of-digits.py | 11 +
16+ ...-numbers-with-even-number-of-digits_method2.cpp | 23 +
17+ Codes/1399-count-largest-group.cpp | 30 ++
18+ Codes/1399-count-largest-group.go | 26 ++
19+ Codes/1399-count-largest-group.java | 30 ++
20+ Codes/1399-count-largest-group.py | 17 +
21+ ...2302-count-subarrays-with-score-less-than-k.cpp | 56 +++
22+ .../2302-count-subarrays-with-score-less-than-k.go | 21 +
23+ ...302-count-subarrays-with-score-less-than-k.java | 19 +
24+ .../2302-count-subarrays-with-score-less-than-k.py | 18 +
25+ ...-subarrays-with-score-less-than-k_notSuffix.cpp | 26 ++
26+ .../2799-count-complete-subarrays-in-an-array.cpp | 32 ++
27+ Codes/2799-count-complete-subarrays-in-an-array.go | 29 ++
28+ .../2799-count-complete-subarrays-in-an-array.java | 34 ++
29+ Codes/2799-count-complete-subarrays-in-an-array.py | 23 +
30+ ...-where-max-element-appears-at-least-k-times.cpp | 30 ++
31+ ...s-where-max-element-appears-at-least-k-times.go | 27 ++
32+ ...where-max-element-appears-at-least-k-times.java | 27 ++
33+ ...s-where-max-element-appears-at-least-k-times.py | 19 +
34+ ...-subarrays-of-length-three-with-a-condition.cpp | 20 +
35+ ...t-subarrays-of-length-three-with-a-condition.go | 17 +
36+ ...subarrays-of-length-three-with-a-condition.java | 17 +
37+ ...t-subarrays-of-length-three-with-a-condition.py | 11 +
38+ README.md | 9 +-
39+ Solutions/LeetCode 1295.统计位数为偶数的数字.md | 210 +++++++++
40+ Solutions/LeetCode 1399.统计最大组的数目.md | 192 ++++++++
41+ .../LeetCode 2302.统计得分小于K的子数组数目.md | 181 ++++++++
42+ Solutions/LeetCode 2799.统计完全子数组的数目.md | 204 +++++++++
43+ ...eetCode 2962.统计最大元素出现至少K次的子数组.md | 182 ++++++++
44+ ...eetCode 3392.统计符合条件长度为3的子数组数目.md | 145 ++++++
45+ Solutions/Other-English-LearningNotes-SomeWords.md | 26 +-
46+ Solutions/Other-Japanese-LearningNotes.md | 17 +-
47+ newSolution.py | 4 +-
48+ tryGoPy/MGJW/lastWeek/05/chat.md | 44 ++
49+ .../{thisWeek => lastWeek/05}/encryptAndDecrypt.py | 0
50+ .../{thisWeek => lastWeek/05}/testForLength.py | 0
51+ .../{thisWeek => lastWeek/05}/testForLength2.py | 0
52+ .../{thisWeek => lastWeek/05}/testForLength3.py | 0
53+ .../{thisWeek => lastWeek/05}/testForLength4.py | 0
54+ tryGoPy/MGJW/lastWeek/05/周报.md | 416 +++++++++++++++++
55+ tryGoPy/MGJW/temp/周报.md | 22 -
56+ tryGoPy/MGJW/{temp => thisWeek}/README | 0
57+ tryGoPy/MGJW/thisWeek/chat.md | 47 +-
58+ tryGoPy/MGJW/thisWeek/周报.md | 499 +++++----------------
59+ 47 files changed, 2397 insertions(+), 437 deletions(-)
60+ create mode 100644 Codes/1295-find-numbers-with-even-number-of-digits.cpp
61+ create mode 100644 Codes/1295-find-numbers-with-even-number-of-digits.go
62+ create mode 100644 Codes/1295-find-numbers-with-even-number-of-digits.java
63+ create mode 100644 Codes/1295-find-numbers-with-even-number-of-digits.py
64+ create mode 100644 Codes/1295-find-numbers-with-even-number-of-digits_method2.cpp
65+ create mode 100644 Codes/1399-count-largest-group.cpp
66+ create mode 100644 Codes/1399-count-largest-group.go
67+ create mode 100644 Codes/1399-count-largest-group.java
68+ create mode 100644 Codes/1399-count-largest-group.py
69+ create mode 100644 Codes/2302-count-subarrays-with-score-less-than-k.cpp
70+ create mode 100644 Codes/2302-count-subarrays-with-score-less-than-k.go
71+ create mode 100644 Codes/2302-count-subarrays-with-score-less-than-k.java
72+ create mode 100644 Codes/2302-count-subarrays-with-score-less-than-k.py
73+ create mode 100644 Codes/2302-count-subarrays-with-score-less-than-k_notSuffix.cpp
74+ create mode 100644 Codes/2799-count-complete-subarrays-in-an-array.cpp
75+ create mode 100644 Codes/2799-count-complete-subarrays-in-an-array.go
76+ create mode 100644 Codes/2799-count-complete-subarrays-in-an-array.java
77+ create mode 100644 Codes/2799-count-complete-subarrays-in-an-array.py
78+ create mode 100644 Codes/2962-count-subarrays-where-max-element-appears-at-least-k-times.cpp
79+ create mode 100644 Codes/2962-count-subarrays-where-max-element-appears-at-least-k-times.go
80+ create mode 100644 Codes/2962-count-subarrays-where-max-element-appears-at-least-k-times.java
81+ create mode 100644 Codes/2962-count-subarrays-where-max-element-appears-at-least-k-times.py
82+ create mode 100644 Codes/3392-count-subarrays-of-length-three-with-a-condition.cpp
83+ create mode 100644 Codes/3392-count-subarrays-of-length-three-with-a-condition.go
84+ create mode 100644 Codes/3392-count-subarrays-of-length-three-with-a-condition.java
85+ create mode 100644 Codes/3392-count-subarrays-of-length-three-with-a-condition.py
86+ create mode 100644 Solutions/LeetCode 1295.统计位数为偶数的数字.md
87+ create mode 100644 Solutions/LeetCode 1399.统计最大组的数目.md
88+ create mode 100644 Solutions/LeetCode 2302.统计得分小于K的子数组数目.md
89+ create mode 100644 Solutions/LeetCode 2799.统计完全子数组的数目.md
90+ create mode 100644 Solutions/LeetCode 2962.统计最大元素出现至少K次的子数组.md
91+ create mode 100644 Solutions/LeetCode 3392.统计符合条件长度为3的子数组数目.md
92+ create mode 100644 tryGoPy/MGJW/lastWeek/05/chat.md
93+ rename tryGoPy/MGJW/{thisWeek => lastWeek/05}/encryptAndDecrypt.py (100%)
94+ rename tryGoPy/MGJW/{thisWeek => lastWeek/05}/testForLength.py (100%)
95+ rename tryGoPy/MGJW/{thisWeek => lastWeek/05}/testForLength2.py (100%)
96+ rename tryGoPy/MGJW/{thisWeek => lastWeek/05}/testForLength3.py (100%)
97+ rename tryGoPy/MGJW/{thisWeek => lastWeek/05}/testForLength4.py (100%)
98+ create mode 100644 tryGoPy/MGJW/lastWeek/05/周报.md
99+ delete mode 100644 tryGoPy/MGJW/temp/周报.md
100+ rename tryGoPy/MGJW/{temp => thisWeek}/README (100%)
0 commit comments