Daily challenge for 2025-02-08
39. Armstrong Number
Write a function solve that checks if an integer is an Armstrong number (a.k.a Narcissistic number).
Example:Input: 153Output: True
Explanation: 1^3 + 5^3 + 3^3 = 153
Run this challenge interactively in Python or JavaScript when the app loads.