#174. no34

no34

Background

Description

Given a list of strings, return a list of the strings, omitting any string length 3 or 4.

Format

Input

Output

Samples

"a" "bb" "ccc"
["a", "bb"]
"a" "bb" "ccc" "dddd"
["a", "bb"]
"ccc" "dddd" "apple"
["apple"]

Limitation

1s, 1024KiB for each test case.