1.
Build the function
censorLetter which takes a string and a char to censor as parameters and returns a βcensoredβ string where all copies of the char are replaced with *. For example, `censorLetter("Bye world", βoβ)` returns the string βBye w*rldβ.
