Set .union() Operation

  • + 6 comments

    Here is Python 3 solution from my HackerrankPractice repository:

    _, a = input(), set(input().split())
    _, b = input(), set(input().split())
    print(len(a.union(b)))
    

    Feel free to ask if you have any questions :)