#171. noTeen
noTeen
Background
Description
Given a list of integers, return a list of those numbers, omitting any that are between 13 and 19 inclusive.
Format
Input
Output
Samples
[12 13 19 20]
[12, 20]
[1 14 1]
[1, 1]
[15]
[]
Limitation
1s, 1024KiB for each test case.