[LeetCode]326. Power of Three ★
每天一道编程题题目描述样例python解法C语言解法题目描述
Given an integer, write a function to determine if it is a power of three. 题目大意:给定一个整数,判断这个整数是否是3 的n次幂
样例
Example 1: Input: 27 Output: true Example 2: In…
2026/7/28 17:46:53