#81. no14
no14
Background
Description
Given an array of ints, return true if it contains no 1's or it contains no 4's.
Format
Input
Output
Samples
[1 2 3]
true
[1 2 3 4]
false
[2 3 4]
true
Limitation
1s, 1024KiB for each test case.