题目:
题解:
class Solution {public: bool isPowerOfThree(int n) { return n > 0 && 1162261467 % n == 0; }};
京公网安备 11010502049817号