Problem 1008. Determine if input is a Narcissistic number

Narcissistic number is a number that is the sum of its own digits each raised to the power of the number of digits.

for example:

153 = 1^3 + 5^3 + 3^3

return true

101 ~= 1^3 + 0 ^3 + 1^3

return false

Solution Stats

63.02% Correct | 36.98% Incorrect
Last Solution submitted on Mar 05, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers185

Suggested Problems

More from this Author17

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!