Skip to content

Latest commit

 

History

History

set-add

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Set .add()

https://www.hackerrank.com/challenges/py-set-add/

Problem

If we want to add a single element to an existing set, we can use the .add() operation.
It adds the element to the set and returns 'None'.

Task

Apply your knowledge of the .add() operation to help your friend Rupal.

Rupal has a huge collection of country stamps. She decided to count the total number of distinct country stamps in her collection. She asked for your help. You pick the stamps one by one from a stack of country stamps.

Find the total number of distinct country stamps.

Input Format

The first line contains an integer N, the total number of country stamps.
The next N lines contains the name of the country where the stamp is from.

Output Format

Output the total number of distinct country stamps on a single line.

Sample Input 0

7
UK
China
USA
France
New Zealand
UK
France 

Sample Output 0

5

My Solution