Remove exclamation marks Description Write function RemoveExclamationMarks which removes all exclamation marks from a given string. My Solution def remove_exclamation_marks(s) s.delete('!') end Better/Alternative solution from Codewars def remove_exclamation_marks(s) s.gsub(/!/, '') end