LeetCode326. Power of Three一行代码解决

来源:互联网 发布:成都盘古网络工作待遇 编辑:程序博客网 时间:2024/05/16 08:08

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.

实现:

bool isPowerOfThree(int n) {        return (n > 0 && 1162261467 % n == 0);}





0 0
原创粉丝点击