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

g2501_2600.s2549_count_distinct_numbers_on_board.Solution Maven / Gradle / Ivy

There is a newer version: 1.37
Show newest version
package g2501_2600.s2549_count_distinct_numbers_on_board;

// #Easy #Array #Hash_Table #Math #Simulation #2023_08_15_Time_0_ms_(100.00%)_Space_39.2_MB_(75.23%)

public class Solution {
    public int distinctIntegers(int n) {
        if (n == 1) {
            return 1;
        }
        return n - 1;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy