#167. 字符串字符移除
字符串字符移除
Remove 'x' from Strings
Background
This is a simple string processing problem designed to test your understanding of basic string operations.
Problem Description
Given a list of strings, return a new list where each string has all its 'x' characters removed.
Input Format
Input is given from standard input in the following format.
Multiple strings, separated by spaces, each string enclosed in double quotes.
Output Format
Output is printed to standard output in the following format.
A list of strings, where each string has all its 'x' characters removed, enclosed in square brackets
[], with strings separated by a comma and space,, and each string enclosed in double quotes.
Sample
"ax" "bb" "cx"
["a\