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-05-02 23:44:12 +08:00
parent 7ea03594b3
commit 2a71c78585
4790 changed files with 11696 additions and 10944 deletions

View File

@@ -11,8 +11,8 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Medium",
"likes": 230,
"dislikes": 22,
"likes": 245,
"dislikes": 24,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Out of Boundary Paths\", \"titleSlug\": \"out-of-boundary-paths\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"Robot Return to Origin\", \"titleSlug\": \"robot-return-to-origin\", \"difficulty\": \"Easy\", \"translatedTitle\": null}]",
"exampleTestcases": "3\n[0,1]\n\"RRDDLU\"\n2\n[1,1]\n\"LURD\"\n1\n[0,0]\n\"LRUD\"",
@@ -143,7 +143,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"14K\", \"totalSubmission\": \"16.9K\", \"totalAcceptedRaw\": 14031, \"totalSubmissionRaw\": 16902, \"acRate\": \"83.0%\"}",
"stats": "{\"totalAccepted\": \"14.7K\", \"totalSubmission\": \"17.6K\", \"totalAcceptedRaw\": 14666, \"totalSubmissionRaw\": 17614, \"acRate\": \"83.3%\"}",
"hints": [
"The constraints are not very large. Can we simulate the execution by starting from each index of s?",
"Before any of the stopping conditions is met, stop the simulation for that index and set the answer for that index."