Solve: Has Teen
Imported By: Geoffrey Challen
/ Version: 2021.4.0
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.
For this problem we're expecting only a method.
Don't define a class, include modifiers like static or public, add import statements, or add code outside the method declaration.fun hasTeen(
first: Int,
second: Int,
third: Int,
): Boolean {
return false
}