#193. wordsWithout
wordsWithout
Background
Description
Given an array of strings, return a new List (e.g. an ArrayList) where all the strings of the given length are omitted. See wordsWithout() below which is more difficult because it uses arrays.
Format
Input
Output
Samples
"a" "bb" "b" "ccc"]
["bb", "ccc"]
"a" "bb" "b" "ccc"]
["a", "bb", "b"]
"a" "bb" "b" "ccc"]
["a", "bb", "b", "ccc"]
Limitation
1s, 1024KiB for each test case.