博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode : Power of Three
阅读量:4959 次
发布时间:2019-06-12

本文共 572 字,大约阅读时间需要 1 分钟。

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

Follow up:

Could you do it without using any loop / recursion?

Credits:

Special thanks to @dietpepsi for adding this problem and creating all test cases.

Subscribe to see which companies asked this question.

class Solution {public:    bool isPowerOfThree(int n) {        if(n<=0)           return false;        if(n==1)            return 1;        else if(n%3==0)            return isPowerOfThree(n/3);        else            return false;    }};

转载于:https://www.cnblogs.com/chankeh/p/6850096.html

你可能感兴趣的文章
2019-04-18 Python Base 1
查看>>
[转]12个方面讲解如何优化jQuery代码的执行效率 .
查看>>
这份性能优化清单,你都做了吗?
查看>>
优酷土豆闪婚 婚后孩子是问题
查看>>
PAT A1126 Eulerian Path (25 分)——连通图,入度
查看>>
SqlDataSource SelectCommand 中oracle 的占位符 :
查看>>
oracle
查看>>
[USACO17JAN]Subsequence Reversal序列反转
查看>>
最短路再放送
查看>>
软件工程个人作业02
查看>>
Spark修改字体方法
查看>>
数组及方法
查看>>
gitlab + jenkins + docker + k8s
查看>>
结对编程第一次作业
查看>>
数据挖掘导论章2数据_by二卷
查看>>
leetcode88—Merge Sorted Array
查看>>
ES6笔记01-声明变量
查看>>
IE兼容方法
查看>>
微软企业库Unity学习笔记(二)
查看>>
使用汉字构形检索疑难字
查看>>