Happy Number:
Nobody has claimed this yet.
Assessment
- Difficulty
- 2/5
- Estimated time
- 1-3 hours
- Newbie friendliness
- 62/100
- Issue type
- Feature
- Clarity
- Mostly clear
- Activity status
- Stale
- Tech stack
- javascript
- Domain
- developer-experience
Research direction
No file or test entry point is named. First inspect the repository's JavaScript exercise layout to find where the function belongs, then implement the stated happy-number behavior and verify the 19 example plus a number that enters a non-1 cycle.
Written by the indexing model from the issue text.
Description
A happy number is a number defined by the following process: Starting with any positive integer, replace the number by the sum of the squares of its digits, and repeat the process until the number equals 1 (where it will stay), or it loops endlessly in a cycle which does not include 1. Those numbers for which this process ends in 1 are happy numbers.
Return True if n is a happy number, and False if not.
Input: 19
Output: true
Explanation:
12 + 92 = 82
82 + 22 = 68
62 + 82 = 100
12 + 02 + 02 = 1
- Dominant language
- JavaScript
- Stars
- 8
- Forks
- 2
- PR merge metrics
- No merged PRs in 30d
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
More from blade-sensei/learning
-
Difficulty 3/5 1-2 days Newbie friendliness 20/100
blade-sensei/learning#130 · 1 comment ·
-
Difficulty 3/5 1-2 days Newbie friendliness 25/100
blade-sensei/learning#129 ·
-
docker Open
Difficulty 5/5 Over a week Newbie friendliness 10/100
blade-sensei/learning#128 · 1 comment ·
-
Difficulty 4/5 3-5 days Newbie friendliness 20/100
blade-sensei/learning#126 · 1 comment ·
-
Difficulty 3/5 1-2 days Newbie friendliness 25/100
blade-sensei/learning#125 · 2 comments ·
All issues in blade-sensei/learning
Similar issues
-
Difficulty 2/5 1-3 hours Newbie friendliness 88/100
HarperFast/skills#96 ·
-
[Block] Latest Posts [Type] Bug
Difficulty 2/5 1-3 hours Newbie friendliness 76/100
-
Difficulty 2/5 1-3 hours Newbie friendliness 78/100
Automattic/studio#4908 ·
-
Difficulty 2/5 1-3 hours Newbie friendliness 74/100
-
Difficulty 2/5 1-3 hours Newbie friendliness 86/100
sugarlabs/musicblocks#8847 ·