Company: Intuit_7aug
Difficulty: medium
Integers greater than a threshold Problem Description You are given a collection of words. You need to find the words that represent valid and unique integers that are greater than the specified 'greaterThan' threshold and return their count. The following words in the collection should be considered while calculating the output: Word representation of integers from 0 to 9. For example, three, seven, etc. Any integers from 0 to 1000, represented as figures. For example, 1, 100, etc. The following words in the collection should not be considered while calculating the output: Words that do not represent an integer. For example, test, word, etc. Empty or null strings. Input: The first line of input contains an integer that represents the number of words in the collection. The second line of input contains a comma-separated array of strings that represent the words. The third line of input contains an integer that represents the threshold. Output: Print the number of unique integers that a