1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-02 14:12:17 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2022-03-29 16:56:27 +08:00
parent e730aa6794
commit ad15da05aa
2517 changed files with 7358 additions and 7332 deletions

View File

@@ -119,7 +119,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"139.6K\", \"totalSubmission\": \"209.1K\", \"totalAcceptedRaw\": 139615, \"totalSubmissionRaw\": 209096, \"acRate\": \"66.8%\"}",
"stats": "{\"totalAccepted\": \"140K\", \"totalSubmission\": \"209.6K\", \"totalAcceptedRaw\": 140012, \"totalSubmissionRaw\": 209639, \"acRate\": \"66.8%\"}",
"hints": [
"Just iterate the linked list and create copies of the nodes on the go. Since a node can be referenced from multiple nodes due to the random pointers, make sure you are not making multiple copies of the same node.",
"You may want to use extra space to keep <b>old node ---> new node</b> mapping to prevent creating multiples copies of same node.",