Contact: aviboots(AT)netvision.net.il
39,907 questions
51,839 answers
573 users
string = 'python javascript typescript node.js c c++' arr = [] for char in string[::]: if char not in arr: arr.append(char) print(len(arr)) ''' run: 18 '''
string = 'python javascript typescript node.js c c++' print(len(set(string)) ) ''' run: 18 '''