Rondo Form is a type of musical structure, in which there is a recurring theme/refrain, notated as A. Here are the rules for valid rondo forms:
Create a function which validates whether a given string is a valid Rondo Form.
valid_rondo("ABACADAEAFAGAHAIAJA") ➞ true
valid_rondo("ABA") ➞ true
valid_rondo("ABBACCA") ➞ false
valid_rondo("ACAC") ➞ false
valid_rondo("A") ➞ false