No Idea!

  • + 4 comments

    arr_set_size = input().split() arr = input().split() set1 = set(map(int, input().split())) set2 = set(map(int, input().split())) print(sum([(e in set1) - (e in set2) for e in arr])) i wrote the same code but its still showing 0 instead of 1 for given input 3 2 1 5 3 3 1 5 7

    whats wrong with the code