Remove exclamation marks 8 kyu: Codewars Solutions

Remove exclamation marks

Write function RemoveExclamationMarks which removes all exclamation marks from a given string.

Solution

class Solution {
    static String removeExclamationMarks(String s) {
            return s.replace("!", "");
    }
}
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments