mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-05 07:21:40 +08:00
update
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
"translatedContent": "<p>有些数的素因子只有 3,5,7,请设计一个算法找出第 k 个数。注意,不是必须有这些素因子,而是必须不包含其他的素因子。例如,前几个数按顺序应该是 1,3,5,7,9,15,21。</p>\n\n<p><strong>示例 1:</strong></p>\n\n<pre><strong>输入: </strong>k = 5\n\n<strong>输出: </strong>9\n</pre>\n",
|
||||
"isPaidOnly": false,
|
||||
"difficulty": "Medium",
|
||||
"likes": 77,
|
||||
"likes": 80,
|
||||
"dislikes": 0,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[]",
|
||||
@@ -155,7 +155,7 @@
|
||||
"__typename": "CodeSnippetNode"
|
||||
}
|
||||
],
|
||||
"stats": "{\"totalAccepted\": \"16.5K\", \"totalSubmission\": \"30K\", \"totalAcceptedRaw\": 16510, \"totalSubmissionRaw\": 30005, \"acRate\": \"55.0%\"}",
|
||||
"stats": "{\"totalAccepted\": \"16.9K\", \"totalSubmission\": \"30.8K\", \"totalAcceptedRaw\": 16924, \"totalSubmissionRaw\": 30807, \"acRate\": \"54.9%\"}",
|
||||
"hints": [
|
||||
"明确这个问题的要求。要求满足 3a× 5b× 7c 这一形式的第 k 小的值。",
|
||||
"蛮力解法得到的形如 3a× 5b × 7c 的第 k 小的值是什么样的?",
|
||||
|
Reference in New Issue
Block a user