The interviewer asked me how I would remove a specific character from a character array.
Sigiloso
Iterate through the array, and for every character not equal to the specific character in question append it to a dynamic data structure (I used ArrayList). Return the data structure after you finish iterating through the original character array.