Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nimacodez/palindrome-number-math-challenge
A Quite small and fun math challenge
https://github.com/nimacodez/palindrome-number-math-challenge
algorithem algorithm algorithms javascript math mathematics node nodejs
Last synced: about 1 month ago
JSON representation
A Quite small and fun math challenge
- Host: GitHub
- URL: https://github.com/nimacodez/palindrome-number-math-challenge
- Owner: NimaCodez
- Created: 2023-02-13T18:55:35.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-14T10:39:40.000Z (almost 2 years ago)
- Last Synced: 2024-12-24T08:16:20.641Z (about 1 month ago)
- Topics: algorithem, algorithm, algorithms, javascript, math, mathematics, node, nodejs
- Language: JavaScript
- Homepage:
- Size: 2.93 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Palindrome Number Math Challenge
A Fun Math Challenge's Algorithm.## So What is a palindrome number?
>> For ex: 7117 is a palindrome number which is read the same way from right and left.# Theory:
### Each *POSITIVE* number that has been summed with its reverse will make a palindrome after a few steps.```A Simple Ex: 45 + 54 = 99```
```139 + 931 = 1070; => 1070 + 0701 = 1771 ✅```### Note:
```Some numbers has gone millions of steps but this action has never happened for them. Like 196 or 295.```
> test them and watch logs, it's fun 🌚