Solve: Near Hundred
Imported By: Geoffrey Challen
/ Version: 2021.3.0
Given an Int
n, return true
if it is within 10 of 100 or 200.
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 nearHundred(n: Int): Boolean {
return false
}