首页 > 其他 > 详细

326. Power of Three

时间:2020-04-07 13:51:39      阅读:76      评论:0      收藏:0      [点我收藏+]

Problem:

Given an integer, write a function to determine if it is a power of three.

Example 1:

Input: 27
Output: true

Example 2:

Input: 0
Output: false

Example 3:

Input: 9
Output: true

Example 4:

Input: 45
Output: false

Follow up:
Could you do it without using any loop / recursion?

思路

Solution (C++):

bool isPowerOfThree(int n) {
    if (n <= 0)  return false;
    while (n%3 == 0)  n /= 3;
    if (n == 1)  return true;
    return false;
}

性能

Runtime: 40 ms??Memory Usage: 5.8 MB

思路

Solution (C++):


性能

Runtime: ms??Memory Usage: MB

326. Power of Three

原文:https://www.cnblogs.com/dysjtu1995/p/12652680.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!