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-05-02 23:44:12 +08:00
parent 7ea03594b3
commit 2a71c78585
4790 changed files with 11696 additions and 10944 deletions

View File

@@ -11,7 +11,7 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Hard",
"likes": 499,
"likes": 508,
"dislikes": 11,
"isLiked": null,
"similarQuestions": "[]",
@@ -149,7 +149,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"8.7K\", \"totalSubmission\": \"21.5K\", \"totalAcceptedRaw\": 8687, \"totalSubmissionRaw\": 21452, \"acRate\": \"40.5%\"}",
"stats": "{\"totalAccepted\": \"8.8K\", \"totalSubmission\": \"21.7K\", \"totalAcceptedRaw\": 8831, \"totalSubmissionRaw\": 21717, \"acRate\": \"40.7%\"}",
"hints": [
"Given the character counts, under what conditions can a palindrome be formed ?",
"From left to right, use bitwise xor-operation to compute for any prefix the number of times modulo 2 of each digit. (mask ^= (1<<(s[i]-'0')).",