1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-10 01:41:41 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

批量更新数据

This commit is contained in:
2025-01-09 20:29:41 +08:00
parent 04ecea043d
commit 48cdd06c2b
5053 changed files with 156164 additions and 135322 deletions

View File

@@ -1,4 +1,4 @@
<p><strong>丑数 </strong>就是只包含质因数&nbsp;<code>2</code><code>3</code><code>5</code>&nbsp;整数。</p>
<p><strong>丑数 </strong>就是只包含质因数&nbsp;<code>2</code><code>3</code><code>5</code>&nbsp;&nbsp;<em>&nbsp;</em>整数。</p>
<p>给你一个整数 <code>n</code> ,请你判断 <code>n</code> 是否为 <strong>丑数</strong> 。如果是,返回 <code>true</code> ;否则,返回 <code>false</code></p>
@@ -16,7 +16,7 @@
<pre>
<strong>输入:</strong>n = 1
<strong>输出:</strong>true
<strong>解释:</strong>1 没有质因数,因此它的全部质因数是 {2, 3, 5} 的空集。习惯上将其视作第一个丑数</pre>
<strong>解释:</strong>1 没有质因数。</pre>
<p><strong>示例 3</strong></p>