Problem
Write function in Java that uses recursion (no loops) to check if the String str has any char a. Return true if it does and false if it doesn't.
Examples:
containsA("all") -> true
containsA("Jane") -> true
containsA("Corey") -> false
containsA("CHARLOTTE") -> false