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.
functionsuperDigit($n,$k){// Write your code hereif(strlen($n)==1&&$k<=1)return$n;$sum=0;for($i=0;$i<strlen($n);$i++)$sum+=(int)$n[$i]*$k;returnsuperDigit((string)$sum,1);}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Recursive Digit Sum
You are viewing a single comment's thread. Return to all comments →
php solution: