#76. more14

more14

Background

Description

Given an array of ints, return true if the number of 1's is greater than the number of 4's

Format

Input

Output

Samples

[1 4 1]
true
[1 4 1 4]
false
[1 1]
true

Limitation

1s, 1024KiB for each test case.