leetcode367
Posted AsenYang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode367相关的知识,希望对你有一定的参考价值。
public class Solution { public bool IsPerfectSquare(int num) { int low = 1, high = num; while (low <= high) { long mid = (low + high) >> 1; if (mid * mid == num) { return true; } else if (mid * mid < num) { low = (int)mid + 1; } else { high = (int)mid - 1; } } return false; } }
https://leetcode.com/problems/valid-perfect-square/#/description
以上是关于leetcode367的主要内容,如果未能解决你的问题,请参考以下文章
leetcode 367 Valid Perfect Square
LeetCode 367. Valid Perfect Square