DEV Community

Discussion on: Daily Challenge #46 - ???

Collapse
 
ben profile image
Ben Halpern

Ruby

def no_more_questions(string)
  string.gsub("?", "")
end