codewars

降序

输入任何一个非负数的数字,将数字的顺序由大到小重新排列,例如Input: 1254859723 Output: 9875543221, demo

素数

输入一个数字,判断是否为素数, 例如,input:3 ,output:true, demo