#170. no9

no9

Background

Description

Given a list of non-negative integers, return a list of those numbers except omitting any that end with 9. (Note: % by 10)

Format

Input

Output

Samples

[1 2 19]
[1, 2]
[9 19 29 3]
[3]
[1 2 3]
[1, 2, 3]

Limitation

1s, 1024KiB for each test case.