Skip to content

Commit e92c9a3

Browse files
longsizhuogithub-actions[bot]
authored andcommitted
chore(docs): sync doc metadata [skip ci]
1 parent b23dab7 commit e92c9a3

File tree

2 files changed

+27
-8
lines changed

2 files changed

+27
-8
lines changed

app/docs/CommunityShare/Leetcode/2299强密码检验器II_translated.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
---
22
title: One question daily 2299. Code inspection device II
3-
date: '2024.01.01 0:00'
3+
date: "2024.01.01 0:00"
44
tags:
55
- - Python
66
- - answer
77
- - Bit operation
88
abbrlink: 7ded25bb
9+
docId: fxn6bn619g3a9l98l9vggpg1
910
---
1011

11-
12-
1312
Excess when executing100%User,What can I say about this question,But one**Bit operation**Knowledge point
1413

1514
# My code:
@@ -35,14 +34,17 @@ class Solution:
3534
return True
3635
return False
3736
```
37+
3838
# Bit operation代码:
39+
3940
method one:simulation + Bit operation
4041

4142
According to the description of the topic,我们可以simulation检查密码是否满足题目要求的过程。
4243

4344
first,We check whether the length of the password is less than 8,in the case of,Then return false。
4445

4546
Next,We use a mask mask To record whether the password contains a lowercase letter、uppercase letter、Numbers and special characters。We traverse the password,Like a character every time,First determine whether it is the same as the previous character,in the case of,Then return false。Then,Update mask according to the type of character mask。at last,We check the mask mask Whether it is 15,in the case of,Then return true,否Then return false。
47+
4648
```python
4749
class Solution:
4850
def strongPasswordCheckerII(self, password: str) -> bool:

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-20T03:05:03.577Z",
3+
"generatedAt": "2025-11-21T03:05:06.818Z",
44
"docsDir": "app/docs",
5-
"totalDocs": 119,
5+
"totalDocs": 120,
66
"results": [
77
{
88
"docId": "ue27z7z95yzw3lhhfj7nit1c",
@@ -2153,6 +2153,23 @@
21532153
}
21542154
]
21552155
},
2156+
{
2157+
"docId": "fxn6bn619g3a9l98l9vggpg1",
2158+
"path": "app/docs/CommunityShare/Leetcode/2299强密码检验器II_translated.md",
2159+
"contributorStats": {
2160+
"114939201": 1
2161+
},
2162+
"contributors": [
2163+
{
2164+
"githubId": "114939201",
2165+
"contributions": 1,
2166+
"lastContributedAt": "2025-11-21T03:00:16.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": "clx9mmqqvxipdfamqciuo146",
21582175
"path": "app/docs/CommunityShare/Leetcode/2679.矩阵中的和_translated.md",
@@ -2208,13 +2225,13 @@
22082225
"docId": "one7va4e0hvbq1eqhm6ww2kd",
22092226
"path": "app/docs/CommunityShare/Leetcode/brief_alternate 作业帮忙_translated.md",
22102227
"contributorStats": {
2211-
"114939201": 1
2228+
"114939201": 2
22122229
},
22132230
"contributors": [
22142231
{
22152232
"githubId": "114939201",
2216-
"contributions": 1,
2217-
"lastContributedAt": "2025-11-20T03:00:04.000Z",
2233+
"contributions": 2,
2234+
"lastContributedAt": "2025-11-20T03:05:05.000Z",
22182235
"login": "longsizhuo",
22192236
"avatarUrl": "https://avatars.githubusercontent.com/u/114939201?v=4",
22202237
"htmlUrl": "https://github.com/longsizhuo"

0 commit comments

Comments
 (0)