6__Persistent_Bugger.js 888 B

12345678910111213141516171819202122232425262728
  1. // 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.
  2. // For example:
  3. // persistence(39) === 3 // because 3*9 = 27, 2*7 = 14, 1*4=4
  4. // // and 4 has only one digit
  5. // persistence(999) === 4 // because 9*9*9 = 729, 7*2*9 = 126,
  6. // // 1*2*6 = 12, and finally 1*2 = 2
  7. // persistence(4) === 0 // because 4 is already a one-digit number
  8. function persistence(num) {
  9. let count = 0;
  10. function mult(n1) {
  11. if (n1 < 10) return 0;
  12. count++;
  13. mult(
  14. n1
  15. .toString()
  16. .split("")
  17. .map((x) => +x)
  18. .reduce((a, b) => a * b, 1)
  19. );
  20. return count;
  21. }
  22. return mult(num);
  23. }