format files

This commit is contained in:
2025-09-29 10:56:26 +08:00
parent af0fe8a168
commit 050164b61b
38 changed files with 38 additions and 38 deletions

View File

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