题解 | #字符串的排列#

字符串的排列

http://www.nowcoder.com/practice/fe6b651b66ae47d7acce78ffdd9a96c7

function Permutation(s)
{
    // write code here
    if (s.length === 0) return [];

    if (s.length === 1) return [s];

    const res = [];
    let len = s.length;

    for (let i = 0; i < len; i++) {
        const char = s.charAt(i);
        const newStr = s.slice(0, i) + s.slice(i + 1);

        const next = Permutation(newStr);

        next.forEach((str) => {
            res.push(char + str);
        })
    }

    return [...new Set(res)];
}
module.exports = {
    Permutation : Permutation
};
全部评论

相关推荐

hso_:哈哈哈哈哈哈我没offer一样在同一道题开喷了
投递深圳同为数码等公司10个岗位
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务