Hello!
I have a string, eg:
$my_string="CCCAAAAACCCAAAAAAACCCCBBBCCAAACCBBACBBAAAAAAAAAAACAAAAAAAA
+AA";
I want to find out which letter (A, B or C) is the most abundant in the string.
I can go the classic way, ie count how many 'A', 'B' and 'C' I have and then compare each number to the other two and see which one is bigger, but I was wondering if there is a quicker way that would save me a number of lines in my program.