码迷,mamicode.com
首页 > 其他好文 > 详细

367. Valid Perfect Square

时间:2018-05-26 16:37:11      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:std   square   bool   static   turn   color   perfect   bsp   ==   

n*n=1+2+3+...+(2n-1)

 1 static int wing=[]()
 2 {
 3     std::ios::sync_with_stdio(false);
 4     cin.tie(NULL);
 5     return 0;
 6 }();
 7 
 8 class Solution 
 9 {
10 public:
11     bool isPerfectSquare(int num) 
12     {
13         for(int i=1;num>0;i+=2)
14             num-=i;
15         return num==0;
16     }
17 };

 

367. Valid Perfect Square

标签:std   square   bool   static   turn   color   perfect   bsp   ==   

原文地址:https://www.cnblogs.com/zhuangbijingdeboke/p/9093172.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!