Contact: aviboots(AT)netvision.net.il
40,885 questions
53,293 answers
573 users
array1 = ["c#", "c", "c++", "java", "python", "vb"] array2 = ["rust", "c", "c++", "go", "python", "nodejs"] # get whats in array2 but not in array1 result = set(array2) - set(array1) print(" ".join(result)) ''' run: nodejs go rust '''