Difficulty Level: MEDIUM
Problem Statement:
Given a sequence of n strings, the task is to check if any two similar words come together and then destroy each other then, print the number of words left in the sequence after this pairwise destruction.
Input:
Hello ScholarHat ScholarHat Students!
Output:
2
(As ScholarHat and ScholarHat destroy each other. So, Hello Students! Will be the new String).