#74. lucky13

lucky13

Background

Description

Given an array of ints, return true if the array contains no 1's and no 3's.

Format

Input

Output

Samples

[0 2 4]
true
[1 2 3]
false
[1 2 4]
false

Limitation

1s, 1024KiB for each test case.