I have a list of strings in my program, for example:
[ 'home', 'dog', 'park', 'house', 'hotel', 'fire' ]
and I want to know which is the most first frequent letter .
for example in that string is the letter H because it is in hotel, house and home.
I tried just 2 for cycles but I didn't get the result