Solve: Old 35
Imported By: Geoffrey Challen
/ Version: 2021.6.0
Return true
if the given non-negative Int
is a multiple of 3 or 5, but not both.
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 old35(n: Int): Boolean {
return false
}