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
Remove ‘A’ if it is present in first 2 characters of the string.
if ‘A’ is present after 2 characters, it should not be
removed.
Ex: “ABCD” => “BCD”
“AACD” => “CD”
“BACD” => “BCD”
“BBAA” => “BBAA”
“AABAA” => “BAA”