1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-10 18:48:13 +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 Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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