Write function RemoveExclamationMarks which removes all exclamation marks from a given string.
Solution
class Solution {
static String removeExclamationMarks(String s) {
return s.replace("!", "");
}
}Write function RemoveExclamationMarks which removes all exclamation marks from a given string.
class Solution {
static String removeExclamationMarks(String s) {
return s.replace("!", "");
}
}