We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A number is said to be Krishnamurthy if the factorial sum of all its digits is equal to that number.
Example
Number = 145 = 1! + 4! + 5! = 1 + ( 4 * 3 * 2 * 1 ) + ( 5 * 4 * 3 * 2 * 1 ) = 1 + 24 + 120 = 145
Yes
It is an important concept for beginners. I will show how to code it in java.
Assignees - @rakshitgupta23 - Java
The text was updated successfully, but these errors were encountered:
@rakshitgupta23 - Assigned in Java
Sorry, something went wrong.
rakshitgupta23
No branches or pull requests
🚀 Feature
A number is said to be Krishnamurthy if the factorial sum of all its digits is equal to that number.
Example
Number = 145
= 1! + 4! + 5!
= 1 + ( 4 * 3 * 2 * 1 ) + ( 5 * 4 * 3 * 2 * 1 )
= 1 + 24 + 120
= 145
Have you read the Contribution Guidelines?
Yes
Pitch
It is an important concept for beginners. I will show how to code it in java.
Assignees -
@rakshitgupta23 - Java
The text was updated successfully, but these errors were encountered: