We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
optimal approach but first requesting other learner to understand the code first
functionfindDigits(n){// Write your code hereletnum=nletcnt=0while(num>0){constlastDigi=num%10if(lastDigi!==0&&(n%lastDigi===0)){cnt++}num=Math.floor(num/10)}returncnt}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Find Digits
You are viewing a single comment's thread. Return to all comments →
optimal approach but first requesting other learner to understand the code first