Write a function name armstrong_check that checks whether the given input is an Armstrong Number or not. It returns logical True or False.
An Armstrong number is one whose sum of digits raised to the power of the number of digits equals the number itself. For example, 371 is an Armstrong number because 3^3 + 7^3 + 1^3 = 371.

Solution Stats

64 Solutions

26 Solvers

Last Solution submitted on Apr 27, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...