1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 15:01:40 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2022-03-29 15:21:05 +08:00
parent b84ae535b7
commit e730aa6794
2244 changed files with 8703 additions and 59499 deletions

View File

@@ -11,7 +11,7 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Medium",
"likes": 529,
"likes": 530,
"dislikes": 219,
"isLiked": null,
"similarQuestions": "[]",
@@ -155,7 +155,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"30.7K\", \"totalSubmission\": \"51.9K\", \"totalAcceptedRaw\": 30651, \"totalSubmissionRaw\": 51936, \"acRate\": \"59.0%\"}",
"stats": "{\"totalAccepted\": \"30.7K\", \"totalSubmission\": \"52K\", \"totalAcceptedRaw\": 30679, \"totalSubmissionRaw\": 51982, \"acRate\": \"59.0%\"}",
"hints": [
"Given a single pattern and word, how can we solve it?",
"One way to do it is using a DP (pos1, pos2) where pos1 is a pointer to the word and pos2 to the pattern and returns true if we can match the pattern with the given word.",