most_common_char(s) using collections.Counter that returns the single most frequently occurring character in string s (ignoring spaces). Break ties by returning the character that appears first in s.most_common_char('mississippi')'i'
'i' and 's' both appear 4 times; 'i' appears first in the string.
`Counter(s.replace(" ", ""))` gives counts.
On a tie, `Counter.most_common()` order is insertion order among equal counts, which matches first-seen order.