Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bell-kevin/persistentbugger
Write a function, persistence, that takes in a positive parameter num and returns its multiplicative persistence, which is the number of times you must multiply the digits in num until you reach a single digit. For example (Input --> Output): 39 --> 3 (because 3*9 = 27, 2*7 = 14, 1*4 = 4 and 4 has only one digit) 999 --> 4 (because 9*9*9 = 729, 7*2*9 = 126, 1*2*6 = 12, and finally 1*2 = 2) 4 --> 0 (because 4 is already a one-digit number)
https://github.com/bell-kevin/persistentbugger
code-wars-solution codewars-kata-solution
Last synced: about 1 month ago
JSON representation
Write a function, persistence, that takes in a positive parameter num and returns its multiplicative persistence, which is the number of times you must multiply the digits in num until you reach a single digit. For example (Input --> Output): 39 --> 3 (because 3*9 = 27, 2*7 = 14, 1*4 = 4 and 4 has only one digit) 999 --> 4 (because 9*9*9 = 729, 7*2*9 = 126, 1*2*6 = 12, and finally 1*2 = 2) 4 --> 0 (because 4 is already a one-digit number)
- Host: GitHub
- URL: https://github.com/bell-kevin/persistentbugger
- Owner: bell-kevin
- License: gpl-3.0
- Created: 2022-06-28T02:11:21.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-06T22:49:49.000Z (over 2 years ago)
- Last Synced: 2024-05-02T04:16:02.897Z (8 months ago)
- Topics: code-wars-solution, codewars-kata-solution
- Language: JavaScript
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0