Solve: Max 10..20
Imported By: Geoffrey Challen
/ Version: 2021.4.0
Given 2 positive int
values, return the larger value that is in the range 10..20 inclusive,
or return 0 if neither is in that range.
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 max1020(
first: Int,
second: Int,
): Int {
return 0
}