https://leetcode.com/problems/divisor-game Easy

Решение

fun divisorGame(n: Int): Boolean {
    return n % 2 == 0
}