Back to Cosmos

Finding all armstrong numbers in a given range

code/mathematical_algorithms/src/armstrong_num_range/README.md

latest737 B
Original Source

Finding all armstrong numbers in a given range

Article for finding all armstrong numbers in a given range

Armstrong Number, also known as Narcissistic Number in a given number base is a number that is the sum of its own digits, each raised to the power of the number of digits. This article covers various topics such as :

  • What is an Armstrong Number?
  • How to find calculate Armstrong Number?
  • Checking if an number is an Armstrong Number
  • ALgorithm for finding Armstrong Numbers in a given range
  • Implementation in Python and C
  • Complexity
  • Applications

This article will give you the knowledge of how to find out the armstrong numbers in a given range.