Skip to content

Commit 4ffd6ff

Browse files
longsizhuogithub-actions[bot]
authored andcommitted
chore(docs): sync doc metadata [skip ci]
1 parent 417baa3 commit 4ffd6ff

File tree

2 files changed

+30
-9
lines changed

2 files changed

+30
-9
lines changed

app/docs/CommunityShare/Leetcode/345. 反转字符串中的元音字母_translated.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,24 @@
11
---
22
title: 345. Voice letter in the reverse string.md
3-
date: '2024.01.01 0:00'
3+
date: "2024.01.01 0:00"
44
tags:
55
- - Python
66
- - answer
77
abbrlink: 1c57c22c
8+
docId: udm0daiek9dr22xq4doep5w4
89
---
910

1011
# topic:
1112

1213
[345. Voice letter in the reverse string.md](https://leetcode.cn/problems/reverse-vowels-of-a-string/description/)
1314

1415
# Thought:
16+
1517
Write two methods,Watch the reminder of the three leaves of the palace water,Can be made with dual pointers,See if both the elements of both ends are vowel letters。 Improved two editions。
18+
1619
# Code:
1720

18-
```python Double pointer
21+
```python Double pointer
1922
class Solution:
2023
def reverseVowels(self, s: str) -> str:
2124
vowels = 'aeiouAEIOU'
@@ -32,7 +35,8 @@ class Solution:
3235
end -= 1
3336
return ''.join(s)
3437
```
35-
```python String operation
38+
39+
```python String operation
3640
class Solution:
3741
def reverseVowels(self, s: str) -> str:
3842
s = list(s)
@@ -48,4 +52,4 @@ class Solution:
4852
else:
4953
a += s[i]
5054
return ''.join(a)
51-
```
55+
```

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-11-17T03:05:45.365Z",
3+
"generatedAt": "2025-11-18T03:06:32.801Z",
44
"docsDir": "app/docs",
5-
"totalDocs": 116,
5+
"totalDocs": 117,
66
"results": [
77
{
88
"docId": "ue27z7z95yzw3lhhfj7nit1c",
@@ -2038,13 +2038,13 @@
20382038
"docId": "w9ffo1wycpbz50051cb7lyo5",
20392039
"path": "app/docs/CommunityShare/Leetcode/[121]买卖股票的最佳时期_translated.md",
20402040
"contributorStats": {
2041-
"114939201": 1
2041+
"114939201": 2
20422042
},
20432043
"contributors": [
20442044
{
20452045
"githubId": "114939201",
2046-
"contributions": 1,
2047-
"lastContributedAt": "2025-11-17T03:00:07.000Z",
2046+
"contributions": 2,
2047+
"lastContributedAt": "2025-11-17T03:05:46.000Z",
20482048
"login": "longsizhuo",
20492049
"avatarUrl": "https://avatars.githubusercontent.com/u/114939201?v=4",
20502050
"htmlUrl": "https://github.com/longsizhuo"
@@ -2153,6 +2153,23 @@
21532153
}
21542154
]
21552155
},
2156+
{
2157+
"docId": "udm0daiek9dr22xq4doep5w4",
2158+
"path": "app/docs/CommunityShare/Leetcode/345. 反转字符串中的元音字母_translated.md",
2159+
"contributorStats": {
2160+
"114939201": 1
2161+
},
2162+
"contributors": [
2163+
{
2164+
"githubId": "114939201",
2165+
"contributions": 1,
2166+
"lastContributedAt": "2025-11-18T03:00:08.000Z",
2167+
"login": "longsizhuo",
2168+
"avatarUrl": "https://avatars.githubusercontent.com/u/114939201?v=4",
2169+
"htmlUrl": "https://github.com/longsizhuo"
2170+
}
2171+
]
2172+
},
21562173
{
21572174
"docId": "ryp6s59uwc10w2dywgs6f66h",
21582175
"path": "app/docs/CommunityShare/Leetcode/80_translated.md",

0 commit comments

Comments
 (0)