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.
ValidRondo("ABACADAEAFAGAHAIAJA") ➞ true
ValidRondo("ABA") ➞ true
ValidRondo("ABBACCA") ➞ false
ValidRondo("ACAC") ➞ false
ValidRondo("A") ➞ false