Having a bit of a problem with the recursive part of this case.
here's what I have so far :
public int freq (String S, Char C) { if (S.length () == 0) return (0); // base case else return // ....
having trouble with the recursive case, I get that it will need to use the substring method, what i'm not sure of is if it needs a counter to count how man times the character occurs in the string. Any help appreciated.