Code with Ramu
One destination for mastering interview coding
Learn, practice, and ace every interview coding question
Category: Uncategorized
-
For All Experiences #An Armstrong number (also called a narcissistic number) is a number that is equal to the sum of its digits raised to the power of the number of digits. num = 153 # Example number #Convert number to string to iterate over digits digits = str(num)power = len(digits) Calculate sum of digits…
-
Welcome to WordPress! This is your first post. Edit or delete it to take the first step in your blogging journey.