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

g3001_3100.s3046_split_the_array.Solution Maven / Gradle / Ivy

There is a newer version: 1.37
Show newest version
package g3001_3100.s3046_split_the_array;

// #Easy #Array #Hash_Table #Counting #2024_02_29_Time_1_ms_(98.82%)_Space_42.8_MB_(63.55%)

public class Solution {
    public boolean isPossibleToSplit(int[] nums) {
        int[] a = new int[101];
        for (int n : nums) {
            a[n]++;
            if (a[n] > 2) {
                return false;
            }
        }
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy