INT_MAX
to represent the minimum frequency of each character.words
array:
a. Initialize a temporary count array of size 26 with zeros.
b. Count the frequency of each character in the current word and update the temporary count array.
c. Update the common count array by taking the minimum of its current value and the temporary count for each character.