1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-27 02:30:28 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/有效的完全平方数 [valid-perfect-square].html

32 lines
993 B
HTML
Raw Normal View History

2023-12-09 18:42:21 +08:00
<p>给你一个正整数 <code>num</code> 。如果 <code>num</code> 是一个完全平方数,则返回 <code>true</code> ,否则返回 <code>false</code></p>
2022-03-27 20:56:26 +08:00
2023-12-09 18:42:21 +08:00
<p><strong>完全平方数</strong> 是一个可以写成某个整数的平方的整数。换句话说,它可以写成某个整数和自身的乘积。</p>
2022-03-27 20:56:26 +08:00
2023-12-09 18:42:21 +08:00
<p>不能使用任何内置的库函数,如&nbsp; <code>sqrt</code></p>
2022-03-27 20:56:26 +08:00
2023-12-09 18:42:21 +08:00
<p>&nbsp;</p>
<p><strong class="example">示例 1</strong></p>
2022-03-27 20:56:26 +08:00
<pre>
<strong>输入:</strong>num = 16
<strong>输出:</strong>true
2023-12-09 18:42:21 +08:00
<strong>解释:</strong>返回 true ,因为 4 * 4 = 16 且 4 是一个整数。
2022-03-27 20:56:26 +08:00
</pre>
2023-12-09 18:42:21 +08:00
<p><strong class="example">示例 2</strong></p>
2022-03-27 20:56:26 +08:00
<pre>
<strong>输入:</strong>num = 14
<strong>输出:</strong>false
2023-12-09 18:42:21 +08:00
<strong>解释:</strong>返回 false ,因为 3.742 * 3.742 = 14 但 3.742 不是一个整数。
2022-03-27 20:56:26 +08:00
</pre>
2023-12-09 18:42:21 +08:00
<p>&nbsp;</p>
2022-03-27 20:56:26 +08:00
<p><strong>提示:</strong></p>
<ul>
2023-12-09 18:42:21 +08:00
<li><code>1 &lt;= num &lt;= 2<sup>31</sup> - 1</code></li>
2022-03-27 20:56:26 +08:00
</ul>