文章 评论 浏览 33
function input(num){ const str = num.toString(); function reverser(pos){ if(pos<0){ return ''; } return str.charAt(pos)+reverser(--pos); } return reverser(str.length-1); }
文章 0 评论 0
接受
第 99 题:编程算法题