Armstrong Numbers in Python
Check if a given number is Armstrong using Python
For starters let us understand what Armstrong numbers are?
An Armstrong number is a positive number which when raised to the length of its digits is equal to the original number.
abcd... = a^n + b^n...
python-and-pearls.hashnode.dev4 min read