1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-05 07:21:40 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2023-12-09 19:57:46 +08:00
parent 9bc4722a45
commit 3770b44d1e
4792 changed files with 10889 additions and 10886 deletions

View File

@@ -52,7 +52,7 @@
],
"companyTagStats": null,
"codeSnippets": null,
"stats": "{\"totalAccepted\": \"82K\", \"totalSubmission\": \"153.6K\", \"totalAcceptedRaw\": 81980, \"totalSubmissionRaw\": 153605, \"acRate\": \"53.4%\"}",
"stats": "{\"totalAccepted\": \"82K\", \"totalSubmission\": \"153.6K\", \"totalAcceptedRaw\": 81984, \"totalSubmissionRaw\": 153612, \"acRate\": \"53.4%\"}",
"hints": [
"Use doubly Linked list with hashmap of pointers to linked list nodes. add unique number to the linked list. When add is called check if the added number is unique then it have to be added to the linked list and if it is repeated remove it from the linked list if exists. When showFirstUnique is called retrieve the head of the linked list.",
"Use queue and check that first element of the queue is always unique.",