#167. noX

noX

Background

Description

Given a list of strings, return a list where each string has all its "x" removed.

Format

Input

Output

Samples

"ax" "bb" "cx"
["a", "bb", "c"]
"xxax" "xbxbx" "xxcx"
["a", "bb", "c"]
"x"
[""]

Limitation

1s, 1024KiB for each test case.