You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#an algorithm that counts the number of substrings that begin with character 'A' and ends with character 'X'. For example, given the input string "CAXAAYXZA", there are four substrings that begin with 'A'
#and ends with 'X', namely: "AX", "AXAAYX", "AAYX", and "AYX".