#101. hasTeen
hasTeen
Background
Description
We'll say that a number is "teen" if it is in the range 13..19 inclusive. Given 3 int values, return true if 1 or more of them are teen.
Format
Input
Output
Samples
13 20 10
true
20 19 10
true
20 10 13
true
Limitation
1s, 1024KiB for each test case.