@@ -20,4 +20,4 @@ bool isPowerOfThree(int n)
// 我们只需要判断 n 是否是 3^19 的约数即可。
return n > 0 && 1162261467 % n == 0;
#endif
}
The note is not visible to the blocked user.