All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g0301_0400.s0390_elimination_game.Solution Maven / Gradle / Ivy

There is a newer version: 1.37
Show newest version
package g0301_0400.s0390_elimination_game;

// #Medium #Math

public class Solution {
    public int lastRemaining(int n) {
        return n == 1 ? 1 : 2 * (n / 2 - lastRemaining(n / 2) + 1);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy