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": 1195,
"dislikes": 101,
"likes": 1260,
"dislikes": 102,
"isLiked": null,
"similarQuestions": "[]",
"exampleTestcases": "[\"BrowserHistory\",\"visit\",\"visit\",\"visit\",\"back\",\"back\",\"forward\",\"visit\",\"forward\",\"back\",\"back\"]\r\n[[\"leetcode.com\"],[\"google.com\"],[\"facebook.com\"],[\"youtube.com\"],[1],[1],[1],[\"linkedin.com\"],[2],[2],[7]]\r",
@@ -149,7 +149,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"71.4K\", \"totalSubmission\": \"95.4K\", \"totalAcceptedRaw\": 71357, \"totalSubmissionRaw\": 95408, \"acRate\": \"74.8%\"}",
"stats": "{\"totalAccepted\": \"74.4K\", \"totalSubmission\": \"99.3K\", \"totalAcceptedRaw\": 74399, \"totalSubmissionRaw\": 99283, \"acRate\": \"74.9%\"}",
"hints": [
"Use two stack one for back history and one for forward history and simulate the functions.",
"Can you do faster by using different data structure ?"