1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 06:51:41 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2022-03-29 15:21:05 +08:00
parent b84ae535b7
commit e730aa6794
2244 changed files with 8703 additions and 59499 deletions

View File

@@ -12,7 +12,7 @@
"isPaidOnly": false,
"difficulty": "Easy",
"likes": 180,
"dislikes": 783,
"dislikes": 787,
"isLiked": null,
"similarQuestions": "[]",
"exampleTestcases": "\"2019-06-29\"\n\"2019-06-30\"\n\"2020-01-15\"\n\"2019-12-31\"",
@@ -143,7 +143,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"28K\", \"totalSubmission\": \"59.9K\", \"totalAcceptedRaw\": 28010, \"totalSubmissionRaw\": 59918, \"acRate\": \"46.7%\"}",
"stats": "{\"totalAccepted\": \"28.1K\", \"totalSubmission\": \"60K\", \"totalAcceptedRaw\": 28060, \"totalSubmissionRaw\": 60014, \"acRate\": \"46.8%\"}",
"hints": [
"Create a function f(date) that counts the number of days from 1900-01-01 to date. How can we calculate the answer ?",
"The answer is just |f(date1) - f(date2)|.",