题解 | #提取不重复的整数#
提取不重复的整数
https://www.nowcoder.com/practice/253986e66d114d378ae8de2e6c4577c1
let line = readline(); //split把字符串分割为字符串数组,reverse是数组的反转,map是遍历数组的 let arr = line.split('').reverse().map(x=>parseInt(x)); //Set有去重功能 let list = Array.from(new Set(arr)); //join() 将数组单元中存储的数据,拼接为一个字符串 console.log(list.join(''))