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

@@ -149,7 +149,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"24.9K\", \"totalSubmission\": \"39.7K\", \"totalAcceptedRaw\": 24920, \"totalSubmissionRaw\": 39665, \"acRate\": \"62.8%\"}",
"stats": "{\"totalAccepted\": \"24.9K\", \"totalSubmission\": \"39.7K\", \"totalAcceptedRaw\": 24930, \"totalSubmissionRaw\": 39677, \"acRate\": \"62.8%\"}",
"hints": [
"手动(慢慢地)完成二进制加法,尝试真正理解发生了什么。",
"你可以把二进制加法看成是对数字的每一位进行迭代、两位进行加和,并在必要时进位。你也可以对操作进行分组。如果首先对每位相加(不进位)会怎样?之后,你可以再处理进位。",