题目:原题链接(简单)

标签:数学

解法 时间复杂度 空间复杂度 执行用时
Ans 1 (Python) O ( l o g N ) O(logN) O(logN) O ( l o g N ) O(logN) O(logN) 36ms (80.28%)
Ans 2 (Python)
Ans 3 (Python)

解法一:

class Solution:
    def isArmstrong(self, N: int) -> bool:
        lst = [int(ch) for ch in str(N)]
        ans = 0
        size = len(lst)
        for i in range(size):
            ans += lst[i] ** size
        return ans == N