Set .add()

  • + 0 comments

    n=int(input()) se=set() for i in range(n): se.add(input())

    print(len(se))