Answers for "remove duplicates from array of strings"

4

python remove duplicates words from string

def unique_list(l):
    ulist = []
    [ulist.append(x) for x in l if x not in ulist]
    return ulist

a="calvin klein design dress calvin klein"
a=' '.join(unique_list(a.split()))
Posted by: Guest on February-23-2020
0

remove duplicates array.filter

// removeDuplicates ES6
const uniqueArray = oldArray.filter((item, index, self) => self.indexOf(item) === index);
Posted by: Guest on December-22-2020

Code answers related to "remove duplicates from array of strings"

Python Answers by Framework

Browse Popular Code Answers by Language