Topic : Armstrong Number
Problem Statement:
An Armstrong number of three digits is an integer such that the sum of the cubes of its digits is equal to the number itself. For example, 153 is an Armstrong number since
1**3 + 5 **3 + 3**3 = 153.
Write a program to check the number is Armstrong number is not.
10001st prime - Project Euler Soution
Deepak Raj ・ Aug 1 '20
def is_armstrong_number(number):
num = str(number)
exp = len(num)
return number == sum([int(i)**exp for i in num])
Share your solution to check Armstrong number.
Top comments (0)