Skip to content

Commit 9f8daff

Browse files
longsizhuogithub-actions[bot]
authored andcommitted
chore(docs): sync doc metadata [skip ci]
1 parent 39d4981 commit 9f8daff

File tree

2 files changed

+30
-7
lines changed

2 files changed

+30
-7
lines changed

app/docs/CommunityShare/Leetcode/[2562]找出数组的串联值_translated.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,27 @@
11
---
22
title: 2562.Find the series of the array
3-
date: '2024.01.01 0:00'
3+
date: "2024.01.01 0:00"
44
tags:
55
- Python
66
- answer
77
- Array
88
- Double pointer
99
- simulation
1010
abbrlink: b625a0e1
11+
docId: naxatag8x2nnvkhbwdfc1azc
1112
---
13+
1214
# topic:
1315

1416
[2562.Find the series of the array.md](https://leetcode-cn.com/problems/find-the-concatenation-of-an-array/)
17+
1518
# Thought:
19+
1620
This question andquiz4very similar,都是Double pointer。
1721
I made a mistake when I did this question,When calculating the right pointer, the negative index is calculated`right = -left + 1`,It is difficult to calculate the relationship between positive indexes,So replaced`right = len(nums) - 1 - left`
22+
1823
# Code:
24+
1925
```python
2026
class Solution:
2127
def findTheArrayConcVal(self, nums: List[int]) -> int:
@@ -28,4 +34,4 @@ class Solution:
2834
elif left < right:
2935
sums += int(str(nums[left]) + str(nums[right]))
3036
return sums
31-
```
37+
```

generated/doc-contributors.json

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"repo": "InvolutionHell/involutionhell",
3-
"generatedAt": "2025-12-16T03:06:38.320Z",
3+
"generatedAt": "2025-12-17T03:05:53.053Z",
44
"docsDir": "app/docs",
5-
"totalDocs": 144,
5+
"totalDocs": 145,
66
"results": [
77
{
88
"docId": "ue27z7z95yzw3lhhfj7nit1c",
@@ -2102,6 +2102,23 @@
21022102
}
21032103
]
21042104
},
2105+
{
2106+
"docId": "naxatag8x2nnvkhbwdfc1azc",
2107+
"path": "app/docs/CommunityShare/Leetcode/[2562]找出数组的串联值_translated.md",
2108+
"contributorStats": {
2109+
"114939201": 1
2110+
},
2111+
"contributors": [
2112+
{
2113+
"githubId": "114939201",
2114+
"contributions": 1,
2115+
"lastContributedAt": "2025-12-17T03:00:04.000Z",
2116+
"login": "longsizhuo",
2117+
"avatarUrl": "https://avatars.githubusercontent.com/u/114939201?v=4",
2118+
"htmlUrl": "https://github.com/longsizhuo"
2119+
}
2120+
]
2121+
},
21052122
{
21062123
"docId": "p9gvb8klqv990cq88j4l76zy",
21072124
"path": "app/docs/CommunityShare/Leetcode/[2582]递枕头_translated.md",
@@ -2455,13 +2472,13 @@
24552472
"docId": "o3knuvbpnki6isfjv3g5ohau",
24562473
"path": "app/docs/CommunityShare/Leetcode/3138. Minimum Length of Anagram Concatenation.md",
24572474
"contributorStats": {
2458-
"114939201": 1
2475+
"114939201": 2
24592476
},
24602477
"contributors": [
24612478
{
24622479
"githubId": "114939201",
2463-
"contributions": 1,
2464-
"lastContributedAt": "2025-12-16T03:00:39.000Z",
2480+
"contributions": 2,
2481+
"lastContributedAt": "2025-12-16T03:06:39.000Z",
24652482
"login": "longsizhuo",
24662483
"avatarUrl": "https://avatars.githubusercontent.com/u/114939201?v=4",
24672484
"htmlUrl": "https://github.com/longsizhuo"

0 commit comments

Comments
 (0)