1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-08 08:51:42 +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

@@ -52,7 +52,7 @@
],
"companyTagStats": null,
"codeSnippets": null,
"stats": "{\"totalAccepted\": \"1.6K\", \"totalSubmission\": \"3.1K\", \"totalAcceptedRaw\": 1590, \"totalSubmissionRaw\": 3134, \"acRate\": \"50.7%\"}",
"stats": "{\"totalAccepted\": \"1.6K\", \"totalSubmission\": \"3.1K\", \"totalAcceptedRaw\": 1602, \"totalSubmissionRaw\": 3147, \"acRate\": \"50.9%\"}",
"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.",