JavaScript icon indicating copy to clipboard operation
JavaScript copied to clipboard

StrongNumber

Open Syed0206 opened this issue 3 months ago • 2 comments

Implemented StrongNumber program in JavaScript

  • [ ] Checks if a number is a Strong Number.

  • [ ] - A Strong Number is a number whose sum of the factorial of its digits equals the number itself.

  • [ ] - For example, 145 is a Strong Number because 1! + 4! + 5! = 1 + 24 + 120 = 145.

  • [ ] - Another example: 1 (1! = 1) and 2 (2! = 2) are also Strong Numbers.

  • [ ] - The program allows the user to input a number and checks whether it is a Strong Number.

Syed0206 avatar Oct 01 '25 17:10 Syed0206

Codecov Report

:x: Patch coverage is 0% with 29 lines in your changes missing coverage. Please review. :white_check_mark: Project coverage is 85.79%. Comparing base (08d8c6b) to head (9ff88ba).

Files with missing lines Patch % Lines
Maths/StrongNumber.js 0.00% 29 Missing :warning:
Additional details and impacted files
@@            Coverage Diff             @@
##           master    #1811      +/-   ##
==========================================
- Coverage   85.91%   85.79%   -0.13%     
==========================================
  Files         379      380       +1     
  Lines       19778    19807      +29     
  Branches     3015     3016       +1     
==========================================
  Hits        16993    16993              
- Misses       2785     2814      +29     

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

:rocket: New features to boost your workflow:
  • :snowflake: Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • :package: JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

codecov-commenter avatar Oct 01 '25 17:10 codecov-commenter

@appgurueu and @raklaptudirm anyone of you can u please review my PR and merge it

Syed0206 avatar Oct 02 '25 17:10 Syed0206