mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-10-21 21:16:45 +08:00
update
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
"translatedContent": "<p>给你一个整数 <code>n</code>,请你每隔三位添加点(即 "." 符号)作为千位分隔符,并将结果以字符串格式返回。</p>\n\n<p> </p>\n\n<p><strong>示例 1:</strong></p>\n\n<pre><strong>输入:</strong>n = 987\n<strong>输出:</strong>"987"\n</pre>\n\n<p><strong>示例 2:</strong></p>\n\n<pre><strong>输入:</strong>n = 1234\n<strong>输出:</strong>"1.234"\n</pre>\n\n<p><strong>示例 3:</strong></p>\n\n<pre><strong>输入:</strong>n = 123456789\n<strong>输出:</strong>"123.456.789"\n</pre>\n\n<p><strong>示例 4:</strong></p>\n\n<pre><strong>输入:</strong>n = 0\n<strong>输出:</strong>"0"\n</pre>\n\n<p> </p>\n\n<p><strong>提示:</strong></p>\n\n<ul>\n\t<li><code>0 <= n < 2^31</code></li>\n</ul>\n",
|
||||
"isPaidOnly": false,
|
||||
"difficulty": "Easy",
|
||||
"likes": 19,
|
||||
"likes": 20,
|
||||
"dislikes": 0,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[]",
|
||||
@@ -137,7 +137,7 @@
|
||||
"__typename": "CodeSnippetNode"
|
||||
}
|
||||
],
|
||||
"stats": "{\"totalAccepted\": \"13.3K\", \"totalSubmission\": \"23.3K\", \"totalAcceptedRaw\": 13261, \"totalSubmissionRaw\": 23259, \"acRate\": \"57.0%\"}",
|
||||
"stats": "{\"totalAccepted\": \"13.9K\", \"totalSubmission\": \"24.5K\", \"totalAcceptedRaw\": 13918, \"totalSubmissionRaw\": 24462, \"acRate\": \"56.9%\"}",
|
||||
"hints": [
|
||||
"Scan from the back of the integer and use dots to connect blocks with length 3 except the last block."
|
||||
],
|
||||
|
Reference in New Issue
Block a user