【ELIXIR】一些迭代題

題目一

一串數字,例如git

2 3 4 2 5 1 7 5 2it

篩選出重複出現了至少n次的數字,例如di

n = 2數字

2 5

題目二

一個數P,計算它的super數,多位數的super數是每一位上的數相加,之和的super數 。只有1位的數,super數等於它自己。

例如

super-digit(P) = super-digit(148148148) = super-digit(1+4+8+1+4+8+1+4+8) = super-digit(39) = super-digit(3+9) = super-digit(12) = super-digit(1+2) = super-digit(3) = 3.

相關文章
相關標籤/搜索